1
0
forked from PGL/Clyde

added ResearchProfile to Apps (to be changed)

This commit is contained in:
2024-04-17 12:40:52 +02:00
parent 5c0dfa3596
commit d4c442c64a
4 changed files with 7 additions and 2 deletions

View File

@ -47,6 +47,7 @@ public class ApplicationsController {
//if unAuthed
authorizedApps.add(Applications.Login);
authorizedApps.add(Applications.ResearcherProfile);
User user = authServ.getUserFromToken(token);
if(user == null)

View File

@ -19,5 +19,7 @@ public enum Applications {
// InscriptionService authorization
Requests,
// profile of a researcher
ResearcherProfile,
StudentsList
}