mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-30 17:02:15 +00:00
21 lines
440 B
JavaScript
21 lines
440 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone',
|
|
'common',
|
|
'app/models/share-admin-share-link'
|
|
], function(_, Backbone, Common, ShareAdminShareLink) {
|
|
'use strict';
|
|
|
|
var ShareAdminShareLinkCollection = Backbone.Collection.extend({
|
|
|
|
model: ShareAdminShareLink,
|
|
|
|
url: function() {
|
|
return Common.getUrl({name: 'share_admin_share_links'});
|
|
}
|
|
|
|
});
|
|
|
|
return ShareAdminShareLinkCollection;
|
|
});
|