forked from mattermost/mattermost-plugin-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
71 lines (71 loc) · 2.92 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
67
68
69
70
71
{
"id": "com.github.manland.mattermost-plugin-gitlab",
"name": "GitLab",
"description": "GitLab plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-gitlab",
"support_url": "https://github.com/mattermost/mattermost-plugin-gitlab/issues",
"icon_path": "assets/icon.svg",
"version": "1.1.0",
"min_server_version": "5.10.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": "To set up the GitLab plugin, you need to register a GitLab OAuth app here https://gitlab.com/profile/applications.",
"settings": [
{
"key": "GitlabURL",
"display_name": "GitLab URL",
"type": "text",
"default": "https://gitlab.com",
"placeholder": "https://gitlab.com",
"help_text": "The base URL for using the plugin with a GitLab installation. Examples: https://gitlab.com or https://gitlab.example.com"
},
{
"key": "GitlabOAuthClientID",
"display_name": "GitLab OAuth Client ID",
"type": "text",
"help_text": "The client ID for the OAuth app registered with GitLab."
},
{
"key": "GitlabOAuthClientSecret",
"display_name": "GitLab OAuth Client Secret",
"type": "text",
"help_text": "The client secret for the OAuth app registered with GitLab."
},
{
"key": "WebhookSecret",
"display_name": "Webhook Secret",
"type": "generated",
"help_text": "The webhook secret set in GitLab."
},
{
"key": "EncryptionKey",
"display_name": "At Rest Encryption Key",
"type": "generated",
"help_text": "The AES encryption key used to encrypt stored access tokens."
},
{
"key": "GitlabGroup",
"display_name": "GitLab Group",
"type": "text",
"placeholder": "groupName",
"help_text": "(Optional) Set to lock the plugin to a single GitLab group."
},
{
"key": "EnablePrivateRepo",
"display_name": "Enable Private Repositories",
"type": "bool",
"help_text": "(Optional) Allow the plugin to work with private repositories."
}
],
"footer": "To report an issue, make a suggestion or a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-gitlab)."
}
}