We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b48874b commit 248ee1fCopy full SHA for 248ee1f
.changeset/red-ducks-battle.md
@@ -0,0 +1,7 @@
1
+---
2
+'@equinor/fusion-framework-module-app': patch
3
4
+
5
+### Changes:
6
+- Updated the `AppClient` class to modify the query path in the `fn` method for fetching app manifests:
7
+ - Changed the path from `/apps/${appKey}` to `/persons/me/apps/${appKey}`.
packages/modules/app/src/AppClient.ts
@@ -68,7 +68,7 @@ export class AppClient implements IAppClient {
68
this.#manifest = new Query<AppManifest, { appKey: string }>({
69
client: {
70
fn: ({ appKey }) => {
71
- return client.json(`/apps/${appKey}`, {
+ return client.json(`/persons/me/apps/${appKey}`, {
72
headers: {
73
'Api-Version': '1.0',
74
},
0 commit comments