Add registration tab to LoginScreen and implement OrganizerProfile screen
This commit is contained in:
+2
@@ -11,6 +11,7 @@ sealed class AppScreen(val route: String) {
|
||||
|
||||
data object Ping : AppScreen("/ping")
|
||||
data object Profile : AppScreen("/profile")
|
||||
data object OrganizerProfile : AppScreen("/organizer/profile")
|
||||
data object AuthCallback : AppScreen("/auth/callback")
|
||||
|
||||
companion object {
|
||||
@@ -23,6 +24,7 @@ sealed class AppScreen(val route: String) {
|
||||
Routes.LOGIN, Routes.Auth.LOGIN -> Login()
|
||||
"/ping" -> Ping
|
||||
"/profile" -> Profile
|
||||
"/organizer/profile" -> OrganizerProfile
|
||||
"/auth/callback" -> AuthCallback
|
||||
else -> Landing // Default fallback
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user