mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-20 20:32:44 +00:00
26 lines
534 B
JavaScript
26 lines
534 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone',
|
|
'common',
|
|
'sysadmin-app/models/repo'
|
|
], function(_, Backbone, Common, RepoModel) {
|
|
'use strict';
|
|
|
|
var RepoCollection = Backbone.Collection.extend({
|
|
|
|
model: RepoModel,
|
|
|
|
url: function () {
|
|
return Common.getUrl({name: 'admin-libraries'});
|
|
},
|
|
|
|
parse: function(data) {
|
|
this.search_name = data.name;
|
|
this.search_owner = data.owner;
|
|
return data.repos;
|
|
}
|
|
});
|
|
|
|
return RepoCollection;
|
|
});
|