No known key found for this signature in database
GPG Key ID: B7AB4B76A7CA7318
19 changed files with 67 additions and 116 deletions
-
4appinfo/routes/routesRoomController.php
-
2docs/capabilities.md
-
10docs/conversation.md
-
2lib/BackgroundJob/ExpireChatMessages.php
-
2lib/Capabilities.php
-
10lib/Chat/ChatManager.php
-
8lib/Controller/RoomController.php
-
42lib/Events/ChangeExpireDateEvent.php
-
2lib/Manager.php
-
4lib/Migration/Version15000Date20220506005058.php
-
2lib/Model/SelectHelper.php
-
18lib/Room.php
-
19lib/Service/RoomService.php
-
2lib/Share/Helper/ShareAPIController.php
-
28tests/integration/features/bootstrap/FeatureContext.php
-
16tests/integration/features/chat/expire-date.feature
-
2tests/integration/spreedcheats/appinfo/routes.php
-
6tests/integration/spreedcheats/lib/Controller/ApiController.php
-
2tests/php/CapabilitiesTest.php
@ -1,42 +0,0 @@ |
|||||
<?php |
|
||||
|
|
||||
declare(strict_types=1); |
|
||||
/** |
|
||||
* @copyright Copyright (c) 2022 Vitor Mattos <vitor@php.rio> |
|
||||
* |
|
||||
* @author Vitor Mattos <vitor@php.rio> |
|
||||
* |
|
||||
* @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\Events; |
|
||||
|
|
||||
use OCA\Talk\Room; |
|
||||
|
|
||||
class ChangeExpireDateEvent extends RoomEvent { |
|
||||
private int $seconds; |
|
||||
public function __construct(Room $room, |
|
||||
int $seconds |
|
||||
) { |
|
||||
parent::__construct($room); |
|
||||
$this->seconds = $seconds; |
|
||||
} |
|
||||
|
|
||||
public function getExpireDateSeconds(): int { |
|
||||
return $this->seconds; |
|
||||
} |
|
||||
} |
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue