diff options
author | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2015-08-31 23:52:00 +0300 |
---|---|---|
committer | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2015-09-15 21:12:39 +0300 |
commit | 0cefbd76b9369135075fda8c210dfa9ff88a264c (patch) | |
tree | 19146eb14532078899567c12bfa78649c6da909e /apps/files_versions/appinfo/app.php | |
parent | 230029e5090b3deecb941e75bbc34a6bcb98c374 (diff) | |
download | nextcloud-server-0cefbd76b9369135075fda8c210dfa9ff88a264c.tar.gz nextcloud-server-0cefbd76b9369135075fda8c210dfa9ff88a264c.zip |
Add expiration for versions older than max
Diffstat (limited to 'apps/files_versions/appinfo/app.php')
-rw-r--r-- | apps/files_versions/appinfo/app.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 967f2e73a34..218d5351152 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -19,6 +19,12 @@ * along with this program. If not, see <http://www.gnu.org/licenses/> * */ -OCP\Util::addStyle('files_versions', 'versions'); + +namespace OCA\Files_Versions\AppInfo; + +$app = new Application(); +$container = $app->getContainer(); + +\OCP\Util::addStyle('files_versions', 'versions'); \OCA\Files_Versions\Hooks::connectHooks(); |