add 10 personas for snare

This commit is contained in:
t3chn0m4g3
2018-08-14 14:20:55 +00:00
parent ff1a857241
commit e2613e7d17
1853 changed files with 182702 additions and 1 deletions

View File

@ -0,0 +1,31 @@
/*
* Copyright (c) 2017
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
*/
(function() {
/**
* @class OC.Share.SharesCollection
* @classdesc
*
* Represents a collection of shares
*/
var SharesCollection = OC.Backbone.Collection.extend({
model: OC.Share.ShareModel,
url: function() {
var params = {
format: 'json'
};
return OC.linkToOCS('apps/files_sharing/api/v1/shares', 2) + '?' + OC.buildQueryString(params);
}
});
OC.Share = OC.Share || {};
OC.Share.SharesCollection = SharesCollection;
})();