forked from RocketChat/Apps.SpamMonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
62 lines (62 loc) · 1.4 KB
/
Copy pathapp.json
File metadata and controls
62 lines (62 loc) · 1.4 KB
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
{
"id": "75069981-b100-489c-adec-895efcdbeb6c",
"version": "0.0.1",
"requiredApiVersion": "^1.44.0",
"iconFile": "icon.png",
"author": {
"name": "meet jain",
"homepage": "https://github.com/RocketChat/Apps.SpamMonitor",
"support": "https://github.com/RocketChat/Apps.SpamMonitor/issues"
},
"defaultLanguage": "en",
"i18n": [
"en.json"
],
"name": "Apps.SpamMonitor",
"nameSlug": "appsspammonitor",
"classFile": "AppsSpamMonitorApp.ts",
"description": "Automatically detects and flags spam from new users before it reaches Rocket.Chats community",
"implements": [
"IPreMessageSentPrevent",
"IPostMessageSent",
"IUIKitInteractionHandler"
],
"permissions": [
{
"name": "room.read"
},
{
"name": "room.write"
},
{
"name": "message.read"
},
{
"name": "message.write"
},
{
"name": "user.read"
},
{
"name": "user.write"
},
{
"name": "persistence"
},
{
"name": "env.read"
},
{
"name": "networking"
},
{
"name": "slashcommand"
},
{
"name": "ui.interact"
},
{
"name": "scheduler"
}
]
}