-
Notifications
You must be signed in to change notification settings - Fork 1
/
userNotificationEvent.xml
93 lines (87 loc) · 3.9 KB
/
userNotificationEvent.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="UTF-8"?>
<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/2019/userNotificationEvent.xsd">
<import>
<!-- todo-edit -->
<event>
<name>todo</name>
<objecttype>de.julian-pfeil.todolist.todo</objecttype>
<classname>todolist\system\user\notification\event\TodoUserNotificationEvent</classname>
<preset>1</preset>
</event>
<event>
<name>edit</name>
<objecttype>de.julian-pfeil.todolist.todo</objecttype>
<classname>todolist\system\user\notification\event\EditUserNotificationEvent</classname>
<preset>1</preset>
</event>
<!-- editor -->
<event>
<name>editor</name>
<objecttype>de.julian-pfeil.todolist.todo</objecttype>
<classname>todolist\system\user\notification\event\EditorUserNotificationEvent</classname>
<preset>1</preset>
</event>
<!-- mention -->
<event>
<name>mention</name>
<objecttype>de.julian-pfeil.todolist.todo</objecttype>
<classname>todolist\system\user\notification\event\MentionUserNotificationEvent</classname>
<preset>1</preset>
</event>
<!-- quote -->
<event>
<name>quote</name>
<objecttype>de.julian-pfeil.todolist.todo</objecttype>
<classname>todolist\system\user\notification\event\QuoteUserNotificationEvent</classname>
<preset>1</preset>
</event>
<!-- subscribed category -->
<event>
<name>category</name>
<objecttype>de.julian-pfeil.todolist.todo</objecttype>
<classname>todolist\system\user\notification\event\TodoCategoryUserNotificationEvent</classname>
<preset>1</preset>
</event>
<!-- reactions / likes -->
<event>
<name>like</name>
<objecttype>de.julian-pfeil.todolist.likeableTodo.notification</objecttype>
<classname>todolist\system\user\notification\event\TodoLikeUserNotificationEvent</classname>
<preset>1</preset>
<options>module_todolist_reactions</options>
</event>
<!-- comments -->
<event>
<name>comment</name>
<objecttype>de.julian-pfeil.todolist.todoComment.notification</objecttype>
<classname>todolist\system\user\notification\event\TodoCommentUserNotificationEvent</classname>
<preset>1</preset>
</event>
<event>
<name>commentResponse</name>
<objecttype>de.julian-pfeil.todolist.todoComment.response.notification</objecttype>
<classname>todolist\system\user\notification\event\TodoCommentResponseUserNotificationEvent</classname>
<preset>1</preset>
</event>
<event>
<name>commentResponseOwner</name>
<objecttype>de.julian-pfeil.todolist.todoComment.response.notification</objecttype>
<classname>todolist\system\user\notification\event\TodoCommentResponseOwnerUserNotificationEvent</classname>
<preset>1</preset>
</event>
<event>
<name>like</name>
<objecttype>de.julian-pfeil.todolist.todoComment.like.notification</objecttype>
<classname>todolist\system\user\notification\event\TodoCommentLikeUserNotificationEvent</classname>
<preset>1</preset>
<options>module_like</options>
</event>
<event>
<name>like</name>
<objecttype>de.julian-pfeil.todolist.todoComment.response.like.notification</objecttype>
<classname>todolist\system\user\notification\event\TodoCommentResponseLikeUserNotificationEvent</classname>
<preset>1</preset>
<options>module_like</options>
</event>
</import>
</data>