-
Notifications
You must be signed in to change notification settings - Fork 16
/
plugin.json
66 lines (66 loc) · 2.65 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
60
61
62
63
64
65
66
{
"id": "bitbucket",
"name": "Bitbucket",
"description": "Bitbucket plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-bitbucket",
"support_url": "https://github.com/mattermost/mattermost-plugin-bitbucket/issues",
"icon_path": "assets/icon.svg",
"min_server_version": "5.37.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": {
"header": "To set up the Bitbucket plugin, you need to register a Bitbucket OAuth consumer here https://bitbucket.org/YOURWORKSPACE/workspace/settings/oauth-consumers/new.",
"footer": "* To report an issue, make a suggestion or a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-bitbucket).",
"settings": [
{
"key": "BitbucketOAuthClientID",
"display_name": "Bitbucket OAuth Client ID (Key)",
"type": "text",
"help_text": "The client ID for the OAuth app registered with Bitbucket.",
"placeholder": "",
"default": null
},
{
"key": "BitbucketOAuthClientSecret",
"display_name": "Bitbucket OAuth Client Secret",
"type": "text",
"help_text": "The client secret for the OAuth app registered with Bitbucket.",
"placeholder": "",
"default": null
},
{
"key": "WebhookSecret",
"display_name": "Webhook Secret",
"type": "generated",
"help_text": "The webhook secret set in Bitbucket.",
"placeholder": "",
"default": null
},
{
"key": "EncryptionKey",
"display_name": "At Rest Encryption Key",
"type": "generated",
"help_text": "The AES encryption key used to encrypt stored access tokens.",
"placeholder": "",
"default": null
},
{
"key": "BitbucketOrg",
"display_name": "Bitbucket Organization",
"type": "text",
"help_text": "(Optional) Set to lock the plugin to a single Bitbucket organization.",
"placeholder": "",
"default": null
}
]
}
}