Skip to content

Commit c37536c

Browse files
committed
Fix JIRA service - add api_url to mandatory attributes
- move api_url to optional attributes based on comments in #142 (comment)
1 parent 12a9a1f commit c37536c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/objects.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1787,8 +1787,8 @@ class ProjectService(GitlabObject):
17871787
'server')),
17881788
'irker': (('recipients', ), ('default_irc_uri', 'server_port',
17891789
'server_host', 'colorize_messages')),
1790-
'jira': (('new_issue_url', 'project_url', 'issues_url', 'api_url'),
1791-
('description', 'username', 'password')),
1790+
'jira': (('new_issue_url', 'project_url', 'issues_url'),
1791+
('api_url', 'description', 'username', 'password')),
17921792
'pivotaltracker': (('token', ), tuple()),
17931793
'pushover': (('api_key', 'user_key', 'priority'), ('device', 'sound')),
17941794
'redmine': (('new_issue_url', 'project_url', 'issues_url'),

0 commit comments

Comments
 (0)