File tree Expand file tree Collapse file tree
settings/lib/Settings/Admin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public function getName(): ?string {
7979 #[\Override]
8080 public function getAuthorizedAppConfig (): array {
8181 return [
82- 'dav ' => [ ' /( ' . implode ( ' | ' , array_keys (self ::defaults)) . ' )/ ' ]
82+ 'dav ' => array_keys (self ::defaults),
8383 ];
8484 }
8585}
Original file line number Diff line number Diff line change @@ -109,10 +109,6 @@ public function getName(): ?string {
109109
110110 #[\Override]
111111 public function getAuthorizedAppConfig (): array {
112- return [
113- 'core ' => [
114- '/mail_general_settings/ ' ,
115- ],
116- ];
112+ return [];
117113 }
118114}
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ public function getPriority() {
120120 #[\Override]
121121 public function getAuthorizedAppConfig (): array {
122122 return [
123- 'core ' => ['/shareapi_.*/ ' ],
123+ 'core ' => ['/^ shareapi_.*$ / ' ],
124124 ];
125125 }
126126
Original file line number Diff line number Diff line change @@ -63,7 +63,10 @@ public function getName(): ?string {
6363 #[\Override]
6464 public function getAuthorizedAppConfig (): array {
6565 return [
66- 'sharebymail ' => ['s/(sendpasswordmail|replyToInitiator)/ ' ],
66+ 'sharebymail ' => [
67+ 'sendpasswordmail ' ,
68+ 'replyToInitiator ' ,
69+ ],
6770 ];
6871 }
6972}
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ public function getName(): ?string {
114114 #[\Override]
115115 public function getAuthorizedAppConfig (): array {
116116 return [
117- Application::APP_ID => '/.* / ' ,
117+ Application::APP_ID => '/^.*$ / ' ,
118118 ];
119119 }
120120}
You can’t perform that action at this time.
0 commit comments