diff options
Diffstat (limited to 'apps/twofactor_backupcodes/appinfo')
-rw-r--r-- | apps/twofactor_backupcodes/appinfo/app.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/twofactor_backupcodes/appinfo/app.php b/apps/twofactor_backupcodes/appinfo/app.php index 0cb10531360..34b4866af2d 100644 --- a/apps/twofactor_backupcodes/appinfo/app.php +++ b/apps/twofactor_backupcodes/appinfo/app.php @@ -1,7 +1,8 @@ <?php - /** - * @author Christoph Wurst <christoph@winzerhof-wurst.at> + * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> + * + * @author Joas Schilling <coding@schilljs.com> * * @license GNU AGPL version 3 or any later version * @@ -20,6 +21,5 @@ * */ -// @codeCoverageIgnoreStart -OC_App::registerPersonal('twofactor_backupcodes', 'settings/personal'); -// @codeCoverageIgnoreEnd +$app = new \OCA\TwoFactorBackupCodes\AppInfo\Application(); +$app->register(); |