Skip to content

Commit b5e6a46

Browse files
committed
Add mattermost service support
1 parent d6fa94e commit b5e6a46

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

gitlab/v3/objects.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1675,6 +1675,7 @@ class ProjectService(GitlabObject):
16751675

16761676
# Optional fields
16771677
'username', 'password', 'jira_issue_transition_id')),
1678+
'mattermost': (('webhook',), ('username', 'channel')),
16781679
'pivotaltracker': (('token', ), tuple()),
16791680
'pushover': (('api_key', 'user_key', 'priority'), ('device', 'sound')),
16801681
'redmine': (('new_issue_url', 'project_url', 'issues_url'),

gitlab/v4/objects.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1676,6 +1676,7 @@ class ProjectServiceManager(GetMixin, UpdateMixin, DeleteMixin, RESTManager):
16761676
('new_issue_url', 'project_url', 'issues_url', 'api_url',
16771677
'description', 'username', 'password',
16781678
'jira_issue_transition_id')),
1679+
'mattermost': (('webhook',), ('username', 'channel')),
16791680
'pivotaltracker': (('token', ), tuple()),
16801681
'pushover': (('api_key', 'user_key', 'priority'), ('device', 'sound')),
16811682
'redmine': (('new_issue_url', 'project_url', 'issues_url'),

0 commit comments

Comments
 (0)