summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/collections/AccountList.js
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/collections/AccountList.js')
-rw-r--r--module/web/static/js/collections/AccountList.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/module/web/static/js/collections/AccountList.js b/module/web/static/js/collections/AccountList.js
deleted file mode 100644
index 1bcf87c1e..000000000
--- a/module/web/static/js/collections/AccountList.js
+++ /dev/null
@@ -1,23 +0,0 @@
-define(['jquery', 'backbone', 'underscore', 'app', 'models/Account'], function($, Backbone, _, App, Account) {
-
- return Backbone.Collection.extend({
-
- model: Account,
-
- comparator: function(account) {
- return account.get('plugin');
- },
-
- initialize: function() {
-
- },
-
- fetch: function(options) {
- // TODO: refresh options?
- options = App.apiRequest('getAccounts/false', null, options);
- return Backbone.Collection.prototype.fetch.call(this, options);
- }
-
- });
-
-}); \ No newline at end of file