forked from sampaiodiego/rocket.chat.app-poll
-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
47 lines (47 loc) · 1.11 KB
/
app.json
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
{
"id": "0a63d0d1-42a1-4951-80ed-023b89352473",
"version": "3.0.0",
"requiredApiVersion": "^1.23.0",
"iconFile": "icon.png",
"author": {
"name": "Rocket.Chat",
"homepage": "https://github.com/RocketChat/rocket.chat.app-poll",
"support": "https://github.com/RocketChat/rocket.chat.app-poll/issues"
},
"name": "Poll Plus",
"nameSlug": "poll",
"classFile": "PollApp.ts",
"description": "Create basic and advanced polls directly in Rocket.Chat. Use the slash command: /poll [Question?]",
"implements": [
"IUIKitInteractionHandler"
],
"permissions": [
{
"name": "scheduler"
},
{
"name": "user.read"
},
{
"name": "server-setting.read"
},
{
"name": "room.read"
},
{
"name": "message.read"
},
{
"name": "message.write"
},
{
"name": "slashcommand"
},
{
"name": "persistence"
},
{
"name": "ui.interact"
}
]
}