aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2024-07-29 12:34:04 -0100
committerGitHub <noreply@github.com>2024-07-29 12:34:04 -0100
commit10821643645f1e9ab5d6d768bd52b37468722d3f (patch)
tree4176f00879a89b675969a8c61d6793d5cf56b04a
parent13d2b676743c6d132b361fd0ff5923bc1f1897c0 (diff)
parentdd0099c69fdca7d55c6f52e2df1be7f23a630549 (diff)
downloadnextcloud-server-10821643645f1e9ab5d6d768bd52b37468722d3f.tar.gz
nextcloud-server-10821643645f1e9ab5d6d768bd52b37468722d3f.zip
Merge pull request #46846 from nextcloud/fix/noid/named-attribute-argument
fix(psalm): named attribute argument
-rw-r--r--apps/theming/lib/Controller/ThemingController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php
index 4d968abf619..73ef78c7a8e 100644
--- a/apps/theming/lib/Controller/ThemingController.php
+++ b/apps/theming/lib/Controller/ThemingController.php
@@ -423,7 +423,7 @@ class ThemingController extends Controller {
*/
#[PublicPage]
#[NoCSRFRequired]
- #[BruteForceProtection('manifest')]
+ #[BruteForceProtection(action: 'manifest')]
public function getManifest(string $app): JSONResponse {
$cacheBusterValue = $this->config->getAppValue('theming', 'cachebuster', '0');
if ($app === 'core' || $app === 'settings') {