aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/js/files.js
blob: f46b96a40b3230ba502fae0b14c2d7747dae87d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2014
 *
 * This file is licensed under the Affero General Public License version 3
 * or later.
 *
 * See the COPYING-README file.
 *
 */

(function() {

	var Files = _.extend({}, OCA.Files.Files, {
		updateStorageStatistics: function() {
			// no op because the trashbin doesn't have
			// storage info like free space / used space
		}

	});

	OCA.Trashbin.Files = Files;
})();