mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-11 01:34:12 +08:00
6767322a22
Fix share button, fix shared_key not added to storedCredential after sharing (Fixes #249) Add password app importer. Fixes #248 Fix version check via proxy. Fixes #237 Fix activity app not filtering. Fixes #246 Add EnPass txt importer. Fixes #159 Fix for disabled share button Require vault key for export. Fixes #199 Indicate that sharing only works with users that have 1 or more vaults. Fixes #242 Reset tags on logout. Fixes #245 Ability to enter OTP secret manually. Fixes #198 Create teampass importer. Fixes #244
53 lines
No EOL
1.1 KiB
PHP
53 lines
No EOL
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Nextcloud - passman
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Sander Brand <brantje@gmail.com>
|
|
* @copyright Sander Brand 2016
|
|
*/
|
|
|
|
namespace OCA\Passman\AppInfo;
|
|
|
|
|
|
use OCP\Util;
|
|
use OCP\BackgroundJob;
|
|
use OCP\App;
|
|
use OCA\Passman\Notifier;
|
|
use OCA\Passman\Activity;
|
|
require_once __DIR__ . '/autoload.php';
|
|
|
|
$app = new \OCA\Passman\AppInfo\Application();
|
|
$app->registerNavigationEntry();
|
|
$app->registerPersonalPage();
|
|
|
|
|
|
$l = \OC::$server->getL10N('passman');
|
|
$manager = \OC::$server->getNotificationManager();
|
|
$manager->registerNotifier(function() {
|
|
return new Notifier(
|
|
\OC::$server->getL10NFactory()
|
|
);
|
|
}, function() use ($l) {
|
|
return [
|
|
'id' => 'passman',
|
|
'name' => $l->t('Passwords'),
|
|
];
|
|
});
|
|
|
|
$manager = \OC::$server->getActivityManager();
|
|
$manager->registerExtension(function() {
|
|
return new Activity(
|
|
\OC::$server->getURLGenerator()
|
|
);
|
|
});
|
|
|
|
/**
|
|
* Loading translations
|
|
*
|
|
* The string has to match the app's folder name
|
|
*/
|
|
Util::addTranslations('passman');
|
|
\OCP\App::registerAdmin('passman', 'templates/admin.settings'); |