feat(MP-29): navigation core module, auth guards & shell wiring\n\n- Establish :frontend:core:navigation module with DeepLinkHandler\n- Introduce NavigationPort & CurrentUserProvider (DI)\n- Harden admin routes against AppRoles.ADMIN\n- Wire Koin in JS/JVM/Wasm shells (navigationModule)\n- Remove legacy DeepLinkHandler from shared\n- Add unit tests for guard logic\n\nRef: MP-29 (#24)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
package at.mocode.frontend.core.domain.models
|
||||
|
||||
/**
|
||||
* Application-wide role constants used for authorization checks.
|
||||
*/
|
||||
object AppRoles {
|
||||
const val ADMIN: String = "admin"
|
||||
}
|
||||
Reference in New Issue
Block a user