Hi everyone,
I’m trying to understand how the Appearance configuration should work with custom realms.
What I understand:
- I’ve read that the Appearance tab should only be used from master realm by superadmin users - but why this limitation?
- When I try to access it from a custom realm (like localhost/myCustomRealm), it goes into an infinite reload loop.
Looking at the code, I think the problem is in page-configuration.ts around line 441:
window.location.reload();
If I want a realm admin (not superadmin) to access the Appearance tab from localhost/myCustomRealm, what’s the proper approach?
Should I:
- Modify the existing configuration page somehow?
- Create a separate realm-specific appearance interface?
- Just accept that all appearance config must be done from master realm?
I’d like realm admins to be able to customize their realm’s logo, colors, etc. without having master realm access.
Has anyone solved this or is there a recommended pattern?
Thanks!