mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-31 14:42:10 +00:00
[system repo admin] fix, improvement, supplement, clean
This commit is contained in:
25
static/scripts/sysadmin-app/collection/search-repos.js
Normal file
25
static/scripts/sysadmin-app/collection/search-repos.js
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
});
|
Reference in New Issue
Block a user