mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-15 03:07:55 +01:00
sort collabs by id
This commit is contained in:
parent
3ad7a345cc
commit
13b3c307c7
@ -37,10 +37,12 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||
isGetterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY)
|
||||
public class RestCollaboration {
|
||||
|
||||
private long id;
|
||||
private String email;
|
||||
private String role;
|
||||
|
||||
public RestCollaboration(@NotNull Collaboration collaboration) {
|
||||
this.id = collaboration.getId();
|
||||
this.email = collaboration.getCollaborator().getEmail();
|
||||
this.role = collaboration.getRole().getLabel();
|
||||
}
|
||||
@ -59,6 +61,10 @@ public class RestCollaboration {
|
||||
|
||||
}
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public String getRole() {
|
||||
return role;
|
||||
}
|
||||
|
@ -192,7 +192,7 @@ $(function () {
|
||||
success:function (data, textStatus, jqXHR) {
|
||||
// Owner roles is the first in the table ...
|
||||
var collabs = data.collaborations.sort(function (a, b) {
|
||||
return a.role <= b.role;
|
||||
return a.id > b.id;
|
||||
});
|
||||
|
||||
// Add all the columns in the table ...
|
||||
|
Loading…
Reference in New Issue
Block a user