-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Add support for creating and searching for issues in gitlab to support the same functionality as implemented for github.
firebase-alerts/functions/src/urls.ts
Lines 33 to 40 in de17a79
| if (repositoryUrl.startsWith("https://github.com")) { | |
| const attributes = [ | |
| `title=${encodeURI(appCrash.issueTitle)}`, | |
| `labels=${appCrash.tags.map((tag) => encodeURI(tag)).join(",")}`, | |
| ]; | |
| return `${repositoryUrl}/issues/new?${attributes.join("&")}`; | |
| } |
firebase-alerts/functions/src/urls.ts
Lines 53 to 55 in de17a79
| if (repositoryUrl.startsWith("https://github.com")) { | |
| return `${repositoryUrl}/issues?q=${encodeURI(appCrash.issueTitle)}`; | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request