new login system complete, that's it for today :3
This commit is contained in:
@@ -39,4 +39,16 @@ class JwtUtils {
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
static String? getInstituteFromJWT(String jwt) {
|
||||
var jwtData = decodeJwt(jwt);
|
||||
|
||||
return jwtData?["kreta:institute_code"];
|
||||
}
|
||||
|
||||
static String? getUsernameFromJWT(String jwt) {
|
||||
var jwtData = decodeJwt(jwt);
|
||||
|
||||
return jwtData?["kreta:user_name"];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user