You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[RequestHeader(name: 'x-nextcloud-federation', description: 'Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request', indirect: true)]
Copy file name to clipboardExpand all lines: lib/Controller/StackOcsController.php
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,19 @@ public function __construct(
29
29
parent::__construct($appName, $request);
30
30
}
31
31
32
+
#[NoAdminRequired]
33
+
#[PublicPage]
34
+
#[NoCSRFRequired]
35
+
#[RequestHeader(name: 'x-nextcloud-federation', description: 'Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request', indirect: true)]
@@ -44,6 +57,20 @@ public function create(string $title, int $boardId, int $order = 0):DataResponse
44
57
};
45
58
}
46
59
60
+
#[NoAdminRequired]
61
+
#[PublicPage]
62
+
#[NoCSRFRequired]
63
+
#[RequestHeader(name: 'x-nextcloud-federation', description: 'Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request', indirect: true)]
0 commit comments