Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/FilteredSettingsManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
return $this->manager->getAdminSettings($section, $subAdminOnly);
}

public function getAdminDelegatedSettings(): array {
return $this->manager->getAdminDelegatedSettings();

Check failure on line 62 in lib/FilteredSettingsManager.php

View workflow job for this annotation

GitHub Actions / static-psalm-analysis dev-stable32

UndefinedInterfaceMethod

lib/FilteredSettingsManager.php:62:26: UndefinedInterfaceMethod: Method OCP\Settings\IManager::getAdminDelegatedSettings does not exist (see https://psalm.dev/181)

Check failure on line 62 in lib/FilteredSettingsManager.php

View workflow job for this annotation

GitHub Actions / static-psalm-analysis dev-stable31

UndefinedInterfaceMethod

lib/FilteredSettingsManager.php:62:26: UndefinedInterfaceMethod: Method OCP\Settings\IManager::getAdminDelegatedSettings does not exist (see https://psalm.dev/181)

Check failure on line 62 in lib/FilteredSettingsManager.php

View workflow job for this annotation

GitHub Actions / static-psalm-analysis dev-stable30

UndefinedInterfaceMethod

lib/FilteredSettingsManager.php:62:26: UndefinedInterfaceMethod: Method OCP\Settings\IManager::getAdminDelegatedSettings does not exist (see https://psalm.dev/181)
}

public function getAllowedAdminSettings(string $section, IUser $user): array {
return $this->manager->getAllowedAdminSettings($section, $user);
}
Expand Down
Loading