Browse Source
Highlight the unread count only for mentions
Highlight the unread count only for mentions
Signed-off-by: Joas Schilling <coding@schilljs.com>pull/1086/head
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
13 changed files with 131 additions and 20 deletions
-
2appinfo/info.xml
-
12css/style.scss
-
2docs/api-v1.md
-
3js/views/roomlistview.js
-
1lib/Capabilities.php
-
22lib/Chat/ChatManager.php
-
9lib/Chat/Notifier.php
-
10lib/Controller/RoomController.php
-
15lib/Manager.php
-
52lib/Migration/Version3003Date20180730080327.php
-
13lib/Participant.php
-
9lib/Room.php
-
1tests/php/CapabilitiesTest.php
@ -0,0 +1,52 @@ |
|||
<?php |
|||
/** |
|||
* @copyright Copyright (c) 2018 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\Spreed\Migration; |
|||
|
|||
use Doctrine\DBAL\Types\Type; |
|||
use OCP\DB\ISchemaWrapper; |
|||
use OCP\Migration\SimpleMigrationStep; |
|||
use OCP\Migration\IOutput; |
|||
|
|||
class Version3003Date20180730080327 extends SimpleMigrationStep { |
|||
|
|||
/** |
|||
* @param IOutput $output |
|||
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|||
* @param array $options |
|||
* @return null|ISchemaWrapper |
|||
* @since 13.0.0 |
|||
*/ |
|||
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { |
|||
/** @var ISchemaWrapper $schema */ |
|||
$schema = $schemaClosure(); |
|||
|
|||
$table = $schema->getTable('talk_participants'); |
|||
if (!$table->hasColumn('last_mention')) { |
|||
$table->addColumn('last_mention', Type::DATETIME, [ |
|||
'notnull' => false, |
|||
]); |
|||
} |
|||
|
|||
return $schema; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue