Skip to content

Commit

Permalink
remove google bucket to env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
cdjreekie committed Feb 24, 2022
1 parent 638a7e3 commit 923ee04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/utilities/wordTemplateBuilder.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const _getTemplate = async templateName => {
destination: __dirname + '/template.docx',
};
// get file from google bucket
resolve(storage.bucket('hdruk-gateway_www-outbound-dar-templates').file(templateName).download(options));
resolve(storage.bucket(process.env.GOOGLE_WORD_OUTBOUND_STORAGE_BUCKET).file(templateName).download(options));
});
};

Expand Down

0 comments on commit 923ee04

Please sign in to comment.