You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
377 B

/*
* Copyright (c) 2015
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
*/
(function(OCA) {
var FilesPlugin = {
attach: function(fileList) {
fileList.registerTabView(new OCA.Activity.ActivityTabView({order: -50}));
}
};
OC.Plugins.register('OCA.Files.FileList', FilesPlugin);
})(OCA);