1
0
forked from PGL/Clyde

added ApplicationController and Application enum

This commit is contained in:
2024-03-15 18:54:53 +01:00
parent 198ee8a4ce
commit 1f14890d43
2 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package ovh.herisson.Clyde.Tables;
public enum Applications {
// without any token
LOGIN,
// with any token
PROFILE,
// Students and higher authorization
MSG,
FORUM,
RDV,
// teachers and Secretary authorization
MANAGECOURSES,
// InscriptionService authorization
INSCRIPTION;
}