1
0
forked from PGL/Clyde

Enum in CamelCase

This commit is contained in:
2024-03-16 00:34:20 +01:00
parent 208c6c63e8
commit 25009ba149
5 changed files with 20 additions and 23 deletions

View File

@ -2,23 +2,20 @@ package ovh.herisson.Clyde.Tables;
public enum Applications {
// without any token
LOGIN,
Login,
// with any token
PROFILE,
Profile,
// Students and higher authorization
MSG,
FORUM,
RDV,
Msg,
Forum,
Rdv,
// teachers and Secretary authorization
MANAGECOURSES,
ManageCourses,
// InscriptionService authorization
INSCRIPTION;
Inscription
}