Skip to content

Commit

Permalink
feat: Improve Achievements link processing - MEED-2917 - Meeds-io/MIP…
Browse files Browse the repository at this point in the history
…s#104

This change will allow to add direct link to achievements made by user.
  • Loading branch information
boubaker committed Nov 15, 2023
1 parent babba1c commit 2d25252
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ export function init() {
'createIssue',
'requestReviewForPullRequest'
].includes(actionLabel),
getLabel: () => ''
getLabel: () => '',
getLink: (realization) => {
realization.link = realization.objectId;
return realization.link;
},
},
});
}

0 comments on commit 2d25252

Please sign in to comment.