Skip to content

Commit

Permalink
fix: plan url
Browse files Browse the repository at this point in the history
  • Loading branch information
metabacalhau committed Jan 22, 2025
1 parent b818776 commit 2b17ef1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-ts",
"version": "3.0.15",
"version": "3.0.16",
"description": "Nevermined Node",
"main": "main.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/access/access.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,9 @@ export class AccessController {

let link
try {
link = new URL(`/subscriptions/${did.getDid()}`, this.backendService.appUrl).toString()
link = new URL(`/plan/${did.getDid()}`, this.backendService.appUrl).toString()
} catch (e) {
link = `https://nevermined.app/subscriptions/${did.getDid()}`
link = `https://nevermined.app/plan/${did.getDid()}`
}

try {
Expand Down

0 comments on commit 2b17ef1

Please # to comment.