Fix creating multiple tokens. The changes were from upstream API
This commit is contained in:
@@ -9,6 +9,7 @@ public class UserTokens {
|
||||
private int id;
|
||||
private String name;
|
||||
private String sha1;
|
||||
private String token_last_eight;
|
||||
|
||||
public UserTokens(String name) {
|
||||
this.name = name;
|
||||
@@ -29,4 +30,8 @@ public class UserTokens {
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getToken_last_eight() {
|
||||
return token_last_eight;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user