Skip to content

Commit

Permalink
Merge pull request #224 from qwertos/feature-gitlab_only_assigned
Browse files Browse the repository at this point in the history
Added only_if_assigned to gitlab
  • Loading branch information
ralphbean committed Jul 8, 2015
2 parents 7f9cdce + 0f6fea7 commit 156b5a9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bugwarrior/services/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@ def get_service_metadata(self):
'label_template': self.label_template,
}


def get_owner(self, issue):
if issue[1]['assignee'] != None and issue[1]['assignee']['username']:
return issue[1]['assignee']['username']

def filter_repos(self, repo):
if self.exclude_repos:
if repo['path_with_namespace'] in self.exclude_repos:
Expand Down

0 comments on commit 156b5a9

Please sign in to comment.