8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
export function resolveCompletedSetupRedirectPath(isAuthenticated: boolean, isAdmin: boolean): string {
|
|
if (!isAuthenticated) {
|
|
return '/login'
|
|
}
|
|
|
|
return isAdmin ? '/admin/dashboard' : '/dashboard'
|
|
}
|