|
|
|
@ -19,13 +19,13 @@ github:
|
|
|
|
|
webhook:
|
|
|
|
|
# Webhook settings for the GitHub app.
|
|
|
|
|
#
|
|
|
|
|
secret: {{ matrix_hookshot_github_secret }}
|
|
|
|
|
secret: {{ matrix_hookshot_github_secret|to_json }}
|
|
|
|
|
{% if matrix_hookshot_github_oauth_enabled %}
|
|
|
|
|
oauth:
|
|
|
|
|
# (Optional) Settings for allowing users to sign in via OAuth.
|
|
|
|
|
#
|
|
|
|
|
client_id: {{ matrix_hookshot_github_oauth_id }}
|
|
|
|
|
client_secret: {{ matrix_hookshot_github_oauth_secret }}
|
|
|
|
|
client_secret: {{ matrix_hookshot_github_oauth_secret|to_json }}
|
|
|
|
|
redirect_uri: {{ matrix_hookshot_github_oauth_uri }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
defaultOptions:
|
|
|
|
@ -45,18 +45,18 @@ gitlab:
|
|
|
|
|
instances:
|
|
|
|
|
{{ matrix_hookshot_gitlab_instances }}
|
|
|
|
|
webhook:
|
|
|
|
|
secret: {{ matrix_hookshot_gitlab_secret }}
|
|
|
|
|
secret: {{ matrix_hookshot_gitlab_secret|to_json }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if matrix_hookshot_jira_enabled %}
|
|
|
|
|
jira:
|
|
|
|
|
# (Optional) Configure this to enable Jira support
|
|
|
|
|
#
|
|
|
|
|
webhook:
|
|
|
|
|
secret: {{ matrix_hookshot_jira_secret }}
|
|
|
|
|
secret: {{ matrix_hookshot_jira_secret|to_json }}
|
|
|
|
|
{% if matrix_hookshot_jira_oauth_enabled %}
|
|
|
|
|
oauth:
|
|
|
|
|
client_id: {{ matrix_hookshot_jira_oauth_id }}
|
|
|
|
|
client_secret: {{ matrix_hookshot_jira_oauth_secret }}
|
|
|
|
|
client_id: {{ matrix_hookshot_jira_oauth_id|to_json }}
|
|
|
|
|
client_secret: {{ matrix_hookshot_jira_oauth_secret|to_json }}
|
|
|
|
|
redirect_uri: {{ matrix_hookshot_jira_oauth_uri }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endif %}
|
|
|
|
@ -67,7 +67,7 @@ generic:
|
|
|
|
|
enabled: {{ matrix_hookshot_generic_enabled }}
|
|
|
|
|
urlPrefix: {{ matrix_hookshot_generic_urlprefix }}
|
|
|
|
|
allowJsTransformationFunctions: {{ matrix_hookshot_generic_allow_js_transformation_functions }}
|
|
|
|
|
userIdPrefix: {{ matrix_hookshot_generic_user_id_prefix }}
|
|
|
|
|
userIdPrefix: {{ matrix_hookshot_generic_user_id_prefix|to_json }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if matrix_hookshot_figma_enabled %}
|
|
|
|
|
figma:
|
|
|
|
@ -80,7 +80,7 @@ figma:
|
|
|
|
|
provisioning:
|
|
|
|
|
# (Optional) Provisioning API for integration managers
|
|
|
|
|
#
|
|
|
|
|
secret: {{ matrix_hookshot_provisioning_secret }}
|
|
|
|
|
secret: {{ matrix_hookshot_provisioning_secret|to_json }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
passFile:
|
|
|
|
|
# A passkey used to encrypt tokens stored inside the bridge.
|
|
|
|
@ -90,7 +90,7 @@ passFile:
|
|
|
|
|
bot:
|
|
|
|
|
# (Optional) Define profile information for the bot user
|
|
|
|
|
#
|
|
|
|
|
displayname: {{ matrix_hookshot_bot_displayname }}
|
|
|
|
|
displayname: {{ matrix_hookshot_bot_displayname|to_json }}
|
|
|
|
|
avatar: {{ matrix_hookshot_bot_avatar }}
|
|
|
|
|
metrics:
|
|
|
|
|
# (Optional) Prometheus metrics support
|
|
|
|
|