forked from External/mage
Add missing field to userData
This commit is contained in:
parent
72e4df539b
commit
b397e2849c
3 changed files with 17 additions and 3 deletions
|
|
@ -45,8 +45,9 @@ public class UserView implements Serializable {
|
|||
private final String userState;
|
||||
private final Date muteChatUntil;
|
||||
private final String clientVersion;
|
||||
private final String email;
|
||||
|
||||
public UserView(String userName, String host, String sessionId, Date timeConnected, String gameInfo, String userState, Date muteChatUntil, String clientVersion) {
|
||||
public UserView(String userName, String host, String sessionId, Date timeConnected, String gameInfo, String userState, Date muteChatUntil, String clientVersion, String email) {
|
||||
this.userName = userName;
|
||||
this.host = host;
|
||||
this.sessionId = sessionId;
|
||||
|
|
@ -55,6 +56,7 @@ public class UserView implements Serializable {
|
|||
this.userState = userState;
|
||||
this.muteChatUntil = muteChatUntil;
|
||||
this.clientVersion = clientVersion;
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
|
|
@ -88,5 +90,9 @@ public class UserView implements Serializable {
|
|||
public Date getTimeConnected() {
|
||||
return timeConnected;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue