Skip to content

Commit

Permalink
update issue url to point at hakai page
Browse files Browse the repository at this point in the history
  • Loading branch information
fostermh committed Jul 16, 2024
1 parent 256dbc9 commit e746006
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion firebase-functions/functions/notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ exports.notifyReviewer = functions.database
console.log("Creating github issue");
await createIssue(
title,
`https://cioos-siooc.github.io/metadata-entry-form/#/${language}/${region}/${userID}/${recordID}`
// `https://cioos-siooc.github.io/metadata-entry-form/#/${language}/${region}/${userID}/${recordID}`
// hard coding the front end url as it was done this way before and I can't think of a good way of
// making this dynamic. Firebase know where the request came from as this is trigered on update of a record.
`https://hakaiinstitute.github.io/hakai-metadata-entry-form/#/${language}/${region}/${userID}/${recordID}`,
);
}
// getting dest email by query string
Expand Down

0 comments on commit e746006

Please sign in to comment.