Browse Source
feat(federation): Allow editing and deleting for federated users
feat(federation): Allow editing and deleting for federated users
Signed-off-by: Joas Schilling <coding@schilljs.com>pull/11587/head
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
6 changed files with 277 additions and 6 deletions
-
1lib/Chat/ChatManager.php
-
37lib/Controller/ChatController.php
-
115lib/Federation/Proxy/TalkV1/Controller/ChatController.php
-
82lib/Federation/Proxy/TalkV1/ProxyRequest.php
-
37lib/Middleware/Attribute/RequireAuthenticatedParticipant.php
-
11lib/Middleware/InjectionMiddleware.php
@ -0,0 +1,37 @@ |
|||
<?php |
|||
|
|||
declare(strict_types=1); |
|||
|
|||
/** |
|||
* @copyright Copyright (c) 2024 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @author Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
*/ |
|||
|
|||
namespace OCA\Talk\Middleware\Attribute; |
|||
|
|||
use Attribute; |
|||
use OCA\Talk\Middleware\InjectionMiddleware; |
|||
|
|||
/** |
|||
* Allows logged-in users and federated participants |
|||
* @see InjectionMiddleware::getLoggedIn() |
|||
*/ |
|||
#[Attribute(Attribute::TARGET_METHOD)]
|
|||
class RequireAuthenticatedParticipant extends RequireParticipant { |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue