$c->query('Logger')
);
});
+
$container->registerService('AppSettingsController', function(IContainer $c) {
return new AppSettingsController(
$c->query('AppName'),
$c->query('Request'),
$c->query('L10N'),
$c->query('Config'),
- $c->query('ICacheFactory'),
$c->query('INavigationManager'),
$c->query('IAppManager'),
- $c->query('OcsClient')
+ $c->query('CategoryFetcher'),
+ $c->query('AppFetcher'),
+ \OC::$server->getL10NFactory()
);
});
$container->registerService('AuthSettingsController', function(IContainer $c) {
private $isAdmin;
/** @var IUserManager */
private $userManager;
- /** @var \OC\Group\Manager */
+ /** @var IGroupManager */
private $groupManager;
/** @var IConfig */
private $config;
* @PasswordConfirmationRequired
* @todo merge into saveUserSettings
*
- * @NoAdminRequired
- * @PasswordConfirmationRequired
- *
* @param string $username
* @param string $displayName
* @return DataResponse
this._scopes = [
{
name: 'private',
- displayName: (this.field == 'avatar' || this.field == 'displayname') ? t('core', 'Local') : t('core', 'Private'),
- tooltip: (this.field == 'avatar' || this.field == 'displayname') ? t('core', 'Only visible to local users') : t('core', 'Only visible to you'),
+ displayName: (this.field === 'avatar' || this.field === 'displayname') ? t('core', 'Local') : t('core', 'Private'),
+ tooltip: (this.field === 'avatar' || this.field === 'displayname') ? t('core', 'Only visible to local users') : t('core', 'Only visible to you'),
icon: OC.imagePath('core', 'actions/password'),
active: false
},