mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-06 04:25:22 +00: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.title=User Control Settings
|
||||||
adminUserSettings.header=Admin 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.admin=Admin
|
||||||
adminUserSettings.user=User
|
adminUserSettings.user=User
|
||||||
adminUserSettings.addUser=Add New User
|
adminUserSettings.addUser=Add New User
|
||||||
|
@ -55,7 +55,11 @@ public class User implements Serializable {
|
|||||||
@Column(name = "authenticationtype")
|
@Column(name = "authenticationtype")
|
||||||
private String 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<>();
|
private Set<Authority> authorities = new HashSet<>();
|
||||||
|
|
||||||
@ManyToOne(fetch = FetchType.EAGER)
|
@ManyToOne(fetch = FetchType.EAGER)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user