I was thinking about 2 more alternatives:
• use metadata to identify users allowed to access the admin part: the user would be logged in the admin app but couldn't do anything, on the backend side I can verify the metadata to grand additionnal permissions
• use oauth2 authorization code flow on the admin app, and send jwt to the backend. As the app and ory would run on the same domain, the cookie would be sent alongside the jwt, which would require to handle authentication methods precedence on the backend (not really an issue)
any thoughts ?