Files
Clyde/backend/src/main/java/ovh/herisson/Clyde/Tables/Applications.java
Bartha Maxime 4d007534b3
Some checks failed
Build and test backend / Build-backend (pull_request) Failing after 1m19s
Build and test FrontEnd / Build-frontend (pull_request) Failing after 23s
Merge remote-tracking branch 'origin/master'
2024-04-21 23:34:19 +02:00

39 lines
682 B
Java

package ovh.herisson.Clyde.Tables;
public enum Applications {
// without any token
Login,
Schedule,
// with any token
Profile,
// Students and higher authorization
Msg,
Forum,
Rdv,
// teachers authorization
ManageOwnedLessons,
// teachers and Secretary authorization
ManageCourses,
UsersList,
//Secretary authorization
ManageSchedules,
LessonRequests,
// InscriptionService authorization
Requests,
// profile of a researcher
ResearcherProfile,
ManageResearcherProfile,
//the list of all researches (filterable)
ListResearches,
CreateUser,
StudentsList,
Payments
}