forked from mattermost/mattermost-plugin-google-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
34 lines (34 loc) · 1.27 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
{
"id": "calendar",
"name": "A google calendar plugin",
"description": "Google Calendar Plugin",
"version": "0.1.0",
"min_server_version": "5.18.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"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Enjoy using this plugin? Want to contribute and make it more awesome? You can [fork the repository](https://github.com/hahmadia/google-calendar-plugin/) and submit your pull requests!",
"settings": [
{
"key": "CalendarClientId",
"display_name": "Google Calendar OAuth Client ID",
"type": "text",
"help_text": "The client ID for the OAuth app registered with Google Cloud."
},
{
"key": "CalendarClientSecret",
"display_name": "Google Calendar OAuth Client Secret",
"type": "text",
"help_text": "The client secret for the OAuth app registered with Google Cloud."
}
]
}
}