From ddb4d4cd2a6f8a6a0dc88a530fc4605dfe76fcd3 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Sat, 12 Apr 2025 13:20:15 +0200 Subject: [PATCH 1/3] feat: call to endpoint myMenu --- src/stores/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/app.js b/src/stores/app.js index d5183dc8..94877e81 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -32,7 +32,7 @@ export const useAppStore = defineStore('hedera', { }), actions: { async getMenuLinks() { - const { data: sections } = await api.get('MyMenus'); + const { data: sections } = await api.get('MyMenus/myMenu'); if (!sections) return; -- 2.40.1 From 3808e510a8dfc6bb285a54e882d3fc9d8cfb3082 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Sun, 13 Apr 2025 19:56:28 +0200 Subject: [PATCH 2/3] perf: simplify name --- src/stores/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/app.js b/src/stores/app.js index 94877e81..7533c0bf 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -32,7 +32,7 @@ export const useAppStore = defineStore('hedera', { }), actions: { async getMenuLinks() { - const { data: sections } = await api.get('MyMenus/myMenu'); + const { data: sections } = await api.get('MyMenus/my'); if (!sections) return; -- 2.40.1 From 9cb47fb0f001f277af7da82a4e63d37dc3060414 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 14 Apr 2025 08:00:19 +0200 Subject: [PATCH 3/3] perf: simplify name --- src/stores/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/app.js b/src/stores/app.js index 7533c0bf..94877e81 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -32,7 +32,7 @@ export const useAppStore = defineStore('hedera', { }), actions: { async getMenuLinks() { - const { data: sections } = await api.get('MyMenus/my'); + const { data: sections } = await api.get('MyMenus/myMenu'); if (!sections) return; -- 2.40.1