diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-09-13 09:45:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-13 09:45:14 +0200 |
commit | d83b8380fe87a0de88cf2e0d6ff56f95e9b83bac (patch) | |
tree | b9ce3d36fa416040c82a9288dc540f1a34055a0f | |
parent | 449830f7ddad06d035995d7d004111a1be774532 (diff) | |
parent | c8c43ee74fa58c1011a404c2a0f296a0042451e9 (diff) | |
download | gitlab-d83b8380fe87a0de88cf2e0d6ff56f95e9b83bac.tar.gz |
Merge pull request #146 from galet/add-api-url-to-jira-params
JIRA service - add api_url to optional attributes
-rw-r--r-- | gitlab/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py index be0dbef..bafd0e5 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -1788,7 +1788,7 @@ class ProjectService(GitlabObject): 'irker': (('recipients', ), ('default_irc_uri', 'server_port', 'server_host', 'colorize_messages')), 'jira': (('new_issue_url', 'project_url', 'issues_url'), - ('description', 'username', 'password')), + ('api_url', 'description', 'username', 'password')), 'pivotaltracker': (('token', ), tuple()), 'pushover': (('api_key', 'user_key', 'priority'), ('device', 'sound')), 'redmine': (('new_issue_url', 'project_url', 'issues_url'), |