Hi guys, am developing a snap which is basically a webapp serving some files and getting protected using the jwt... at some point my menu.sidebar looks like this: "menus": { "sidebar": [ { "id": "my-id", "title": "Title1", "icon": "my-icon", "link": "/my-id?token=${bearertoken}", "permissions": [...] } ]... and so far this is working fine since my link is getting created dynamically replacing the 'bearertoken' place-holder with the 'jwt' but then I decided to add also an "overview" using the same approach but in this case then the link is getting invalid since the replacement is not working, this is how my json looks like: "overview": [ { "id": "my-id-overview", "title": "Title overview", "icon": "my-icon", "link": "/my-id/token=${bearertoken}", "permissions": [...] },... this is resulting in an URL like: https://<foo>/<bar>?token=${bearertoken} am I using the feature incorrectly? or there is another way to do it? Thanks in advance Best regards José
... View more