mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-08-02 13:48:15 +02:00
formating and lang
This commit is contained in:
parent
a9def611f6
commit
771ce3acfe
@ -414,6 +414,9 @@ account.adminNotif=You have admin privileges. Access system settings and user ma
|
||||
|
||||
adminUserSettings.title=User Control Settings
|
||||
adminUserSettings.header=Admin User Control Settings
|
||||
adminUserSettings.systemAdmin=System Administrator
|
||||
adminUserSettings.orgAdmin=Organisation Administrator
|
||||
adminUserSettings.teamLead=Team Leader
|
||||
adminUserSettings.admin=Admin
|
||||
adminUserSettings.user=User
|
||||
adminUserSettings.addUser=Add New User
|
||||
|
@ -55,7 +55,11 @@ public class User implements Serializable {
|
||||
@Column(name = "authenticationtype")
|
||||
private String authenticationType;
|
||||
|
||||
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "user")
|
||||
@OneToMany(
|
||||
fetch = FetchType.EAGER,
|
||||
cascade = CascadeType.ALL,
|
||||
mappedBy = "user",
|
||||
orphanRemoval = true)
|
||||
private Set<Authority> authorities = new HashSet<>();
|
||||
|
||||
@ManyToOne(fetch = FetchType.EAGER)
|
||||
|
Loading…
Reference in New Issue
Block a user