I've been experimenting with multipage apps over the past few weeks, and I'm generally a big fan!
However, I noticed that it's not currently possible to define granular access control within a multipage application. It would be great to have the ability to specify which users can access specific pages.
Are there any plans to support this feature in the future?
As i workarond I have disabled and hidden certain pages in my menu based on user groups. It still doesn't block access but maybe someone can use the workaround until rel access control is avalable for multipage apps
A similar workaround I've seen is to write a JS query on a given page that checks current_user.groups and conditionally navigates them away using utils.openPage. Toggle on the advanced option to run the query on page load and you can effectively implement RBAC at the page level, although the user experience is admittedly not very clear.