We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d777e13 commit 831def8Copy full SHA for 831def8
1 file changed
lib/Settings/Admin.php
@@ -22,9 +22,16 @@
22
namespace OCA\LogReader\Settings;
23
24
use OCP\AppFramework\Http\TemplateResponse;
25
-use OCP\Settings\ISettings;
+use OCP\IL10N;
26
+use OCP\Settings\IDelegatedSettings;
27
-class Admin implements ISettings {
28
+class Admin implements IDelegatedSettings {
29
+ /** @var IL10N */
30
+ private $l;
31
+
32
+ public function __construct(IL10N $l) {
33
+ $this->l = $l;
34
+ }
35
/**
36
* @return TemplateResponse
37
*/
@@ -52,4 +59,12 @@ public function getSection() {
52
59
public function getPriority() {
53
60
return 90;
54
61
}
62
63
+ public function getName(): ?string {
64
+ return null;
65
66
67
+ public function getAuthorizedAppConfig(): array {
68
+ return [];
69
55
70
0 commit comments