1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 11:10:18 +02:00

[ticket/13713] Introduce mention notifications for groups

PHPBB3-13713
This commit is contained in:
lavigor
2018-07-30 02:58:40 +03:00
committed by Marc Alexander
parent 0fd78c5c87
commit 27b37f3881
6 changed files with 221 additions and 42 deletions

View File

@@ -1,5 +1,23 @@
<?xml version="1.0" encoding="UTF-8" ?>
<dataset>
<table name="phpbb_groups">
<column>group_id</column>
<column>group_name</column>
<column>group_type</column>
<column>group_desc</column>
<row>
<value>1</value>
<value>Normal group</value>
<value>0</value>
<value></value>
</row>
<row>
<value>2</value>
<value>Hidden group</value>
<value>2</value>
<value></value>
</row>
</table>
<table name="phpbb_notifications">
<column>notification_id</column>
<column>notification_type_id</column>
@@ -89,6 +107,33 @@
<value></value>
<value></value>
</row>
<row>
<value>8</value>
<value>member of normal group</value>
<value></value>
<value></value>
</row>
<row>
<value>9</value>
<value>member of hidden group</value>
<value></value>
<value></value>
</row>
</table>
<table name="phpbb_user_group">
<column>user_id</column>
<column>group_id</column>
<column>user_pending</column>
<row>
<value>8</value>
<value>1</value>
<value>0</value>
</row>
<row>
<value>9</value>
<value>2</value>
<value>0</value>
</row>
</table>
<table name="phpbb_user_notifications">
<column>item_type</column>
@@ -131,5 +176,12 @@
<value>notification.method.board</value>
<value>0</value>
</row>
<row>
<value>notification.type.mention</value>
<value>0</value>
<value>8</value>
<value>notification.method.board</value>
<value>1</value>
</row>
</table>
</dataset>