-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
68 lines (68 loc) · 1.56 KB
/
app.json
File metadata and controls
68 lines (68 loc) · 1.56 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
63
64
65
66
67
68
{
"id": "7a8cd36b-5f7b-4177-bd7f-bfc9be908bf8",
"version": "3.0.0",
"requiredApiVersion": "^1.29.1",
"iconFile": "icon.png",
"author": {
"name": "Murtaza Patrawala",
"homepage": "https://github.com/AddReminders/Reminders-in-RocketChat",
"support": "https://github.com/AddReminders/Reminders-in-RocketChat"
},
"name": "Reminder Bot",
"nameSlug": "remind",
"classFile": "RemindApp.ts",
"description": "Remind yourself to do things. Automate reminders for you or your team and keep your work and personal life organized with reminders, right from Rocket.Chat.",
"implements": [
"IUIKitInteractionHandler"
],
"permissions": [
{
"name": "networking"
},
{
"name": "persistence"
},
{
"name": "slashcommand"
},
{
"name": "api"
},
{
"name": "message.write"
},
{
"name": "message.read"
},
{
"name": "room.write"
},
{
"name": "ui.interact"
},
{
"name": "ui.registerButtons"
},
{
"name": "room.read"
},
{
"name": "server-setting.read"
},
{
"name": "user.read"
},
{
"name": "user.write"
},
{
"name": "scheduler"
},
{
"name": "upload.write"
},
{
"name": "upload.read"
}
]
}