1
0

adding and importing accessrights.jdl with spotless

This commit is contained in:
Michael Hoennig
2019-04-30 17:24:24 +02:00
parent 2c94d6a985
commit 084c12d2c4
55 changed files with 2604 additions and 35 deletions

View File

@@ -0,0 +1,24 @@
filter all
paginate all with infinite-scroll
enum UserRole {
HOSTMASTER,
ADMIN,
SUPPORTER,
CONTRACTUAL_CONTACT,
FINANCIAL_CONTACT,
TECHNICAL_CONTACT,
CUSTOMER_USER
}
entity UserRoleAssignment {
entityTypeId String,
entityObjectId Long,
userId Long required,
assignedRole UserRole required
}
relationship ManyToOne {
UserRoleAssignment{user(login)} to User{required},
}