Skip to content

Commit

Permalink
Merge pull request #202 from alkem-io/develop
Browse files Browse the repository at this point in the history
Release: Updated URL format for Callouts in Context
  • Loading branch information
valentinyanakiev authored Apr 20, 2023
2 parents 411e47c + f4c98f8 commit 5d05ddf
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions lib/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alkemio/notifications-lib",
"version": "0.2.8",
"version": "0.3.1",
"description": "Library for interacting with Alkemio notifications service",
"author": "Alkemio Foundation",
"private": false,
Expand Down
6 changes: 3 additions & 3 deletions lib/src/common/alkemio-url-generator/alkemio.url.generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ export const createCalloutURL = (
journeyURL: string,
calloutNameID: string
): string => {
return `${journeyURL}/contribute/callouts/${calloutNameID}`;
return `${journeyURL}/collaboration/${calloutNameID}`;
};

export const createCardURL = (
journeyURL: string,
calloutNameID: string,
cardNameID: string
): string => {
return `${journeyURL}/contribute/callouts/${calloutNameID}/aspects/${cardNameID}`;
return `${journeyURL}/collaboration/${calloutNameID}/aspects/${cardNameID}`;
};

export const createCanvasURL = (
journeyURL: string,
calloutNameID: string,
canvasNameID: string
): string => {
return `${journeyURL}/contribute/callouts/${calloutNameID}/canvases/${canvasNameID}`;
return `${journeyURL}/collaboration/${calloutNameID}/canvases/${canvasNameID}`;
};

export const createOrganizationURL = (
Expand Down
18 changes: 9 additions & 9 deletions service/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alkemio-notifications",
"version": "0.7.0",
"version": "0.8.0",
"description": "Alkemio notifications service",
"author": "Alkemio Foundation",
"private": false,
Expand Down Expand Up @@ -36,7 +36,7 @@
},
"dependencies": {
"@alkemio/client-lib": "^0.18.1",
"@alkemio/notifications-lib": "^0.2.8",
"@alkemio/notifications-lib": "^0.3.1",
"@nestjs/common": "^8.0.5",
"@nestjs/config": "^1.0.1",
"@nestjs/core": "^8.0.5",
Expand Down

0 comments on commit 5d05ddf

Please sign in to comment.