-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
59 lines (59 loc) · 2.24 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"id": "com.mattermost.google-play-reviews",
"name": "Google Play Reviews",
"description": "This plugin allows you to connect with your Google Play Developer account and check reviews on your applications.",
"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"
}
},
"settings_schema": {
"header": "",
"settings": [
{
"key": "GooglePlayOAuthClientID",
"display_name": "GooglePlay OAuth Client ID",
"type": "text",
"help_text": "The client ID for the OAuth app registered with GooglePlay."
},
{
"key": "GooglePlayOAuthClientSecret",
"display_name": "GooglePlay OAuth Client Secret",
"type": "text",
"help_text": "The client secret for the OAuth app registered with GooglePlay."
},
{
"key": "EncryptionKey",
"display_name": "At Rest Encryption Key",
"type": "generated",
"help_text": "The AES encryption key used to encrypt stored access tokens."
},
{
"key": "GetListTime",
"display_name": "Refresh time (in seconds)",
"type": "text",
"default": 1800,
"help_text": "How often you want to look for new reviews."
},
{
"key": "AlertWatcherTime",
"display_name": "Alert tick time (in seconds)",
"type": "text",
"default": 300,
"help_text": "How often alerts will check if they have to alert anything."
},
{
"key": "MaxReviewsServed",
"display_name": "Max reviews in messages",
"type": "text",
"default": 10,
"help_text": "How many reviews as maximum you want to receive from plugin messages."
}
],
"footer": ""
}
}