mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-24 22:22:38 +00:00
18 lines
459 B
JavaScript
18 lines
459 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone',
|
|
'common',
|
|
'sysadmin-app/models/device-trusted-ipaddress'
|
|
], function(_, Backbone, Common, DeviceTrustedIPAddress){
|
|
'use strict';
|
|
|
|
var DeviceTrustedIPAddressCollection = Backbone.Collection.extend({
|
|
model: DeviceTrustedIPAddress,
|
|
url: function() {
|
|
return Common.getUrl({name: 'admin-device-trusted-ip'});
|
|
}
|
|
});
|
|
|
|
return DeviceTrustedIPAddressCollection;
|
|
});
|