-
Notifications
You must be signed in to change notification settings - Fork 12
/
plugin.json
36 lines (36 loc) · 1.55 KB
/
plugin.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
{
"id": "mattermost-google-calendar",
"name": "Mattermost Google Calendar plugin",
"description": "This plugin uses webhooks to post reminders from configured Google Calendar.",
"version": "0.1.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"
}
},
"settings_schema": {
"header": "To report an issue, make a suggestion or a contribution, or fork your own version of the plugin, [check the repository](https://github.com/waseem18/mattermost-plugin-google-calendar).",
"settings": [
{
"key": "CalendarOAuthClientID",
"display_name": "Google Calendar OAuth Client ID",
"type": "text",
"help_text": "The client ID for the OAuth app registered with Google Cloud."
},
{
"key": "CalendarOAuthClientSecret",
"display_name": "Google Calendar OAuth Client Secret",
"type": "text",
"help_text": "The client secret for the OAuth app registered with Google Cloud."
},
{
"key": "Username",
"display_name": "User",
"type": "username",
"help_text": "Select the username of the user that the plugin will post with. This can be any user, the name and icon will be overridden when posting."
}
]
}
}