1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 07:01:12 +00:00

[sysadmin] devices: fix & improvement

This commit is contained in:
llj
2016-06-16 10:29:25 +08:00
parent 5487461541
commit 8c0707c647
5 changed files with 12 additions and 12 deletions

View File

@@ -10,13 +10,13 @@ define([
model: DeviceModel,
state: {pageSize: 50},
parseState: function(data) {
return {hasNextPage: data[0].has_next_page, current_page: data[0].current_page};
return data.page_info; // {'has_next_page': has_next_page, 'current_page': current_page}
},
url: function () {
return Common.getUrl({name: 'admin-devices'});
},
parseRecords: function(data) {
return data[1];
return data.devices;
}
});