-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
executable file
·53 lines (53 loc) · 2.78 KB
/
plugin.json
File metadata and controls
executable file
·53 lines (53 loc) · 2.78 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
{
"id": "ai.riffanalytics.survey",
"version": "2.2.0",
"name": "Riff Survey",
"description": "",
"homepage_url": "https://github.com/rifflearning/mattermost-plugin-riff-survey",
"support_url": "https://github.com/rifflearning/mattermost-plugin-riff-survey/issues",
"icon_path": "assets/logo.svg",
"min_server_version": "5.25.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"settings": [
{
"key": "Survey",
"display_name": "Survey:",
"type": "longtext",
"help_text": "Enter the survey in the required format.",
"default": "{\n\t\"title\": \"Riff Meeting Survey\",\n\t\"description\": \"Please tell us about your Riff meeting experience. We will ask you to take this short survey after each meeting, to see how your experience changes over time.\",\n\t\"questions\": [\n\t\t{\n\t\t\t\"type\": \"five-point-likert-scale\",\n\t\t\t\"text\": \"I felt comfortable conversing using this medium.\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"five-point-likert-scale\",\n\t\t\t\"text\": \"I felt comfortable participating in group discussions.\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"five-point-likert-scale\",\n\t\t\t\"text\": \"I felt comfortable interacting with other group members.\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"five-point-likert-scale\",\n\t\t\t\"text\": \"I was able to speak my mind in my group discussion.\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"open\",\n\t\t\t\"text\": \"Please add any other comments about the Riff Edu meeting experience.\"\n\t\t}\n\t]\n}"
},
{
"key": "ReminderText",
"display_name": "Reminder Text:",
"type": "text",
"default": "A gentle reminder to fill the survey.",
"help_text": "Enter the message to be sent to users as a reminder for filling pending surveys."
},
{
"key": "MaxReminderCount",
"display_name": "Max Reminder Count:",
"type": "text",
"default": "3",
"help_text": "The maximum number of times a survey reminder can be sent to a user."
},
{
"key": "ReminderInterval",
"display_name": "Reminder Interval:",
"type": "text",
"default": "15",
"help_text": "Time in minutes after which a new reminder is sent to a user."
}
]
}
}