2014-10-07 10:09:28 -04:00
|
|
|
class IssuableBaseService < BaseService
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_assignee_note(issuable)
|
2015-05-09 18:18:50 -04:00
|
|
|
SystemNoteService.change_assignee(
|
2014-10-07 10:09:28 -04:00
|
|
|
issuable, issuable.project, current_user, issuable.assignee)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_milestone_note(issuable)
|
2015-05-09 18:18:50 -04:00
|
|
|
SystemNoteService.change_milestone(
|
2014-10-07 10:09:28 -04:00
|
|
|
issuable, issuable.project, current_user, issuable.milestone)
|
|
|
|
end
|
2015-02-07 06:14:55 -05:00
|
|
|
|
|
|
|
def create_labels_note(issuable, added_labels, removed_labels)
|
2015-05-09 18:18:50 -04:00
|
|
|
SystemNoteService.change_label(
|
2015-02-07 06:14:55 -05:00
|
|
|
issuable, issuable.project, current_user, added_labels, removed_labels)
|
|
|
|
end
|
2015-05-26 21:49:04 -04:00
|
|
|
|
|
|
|
def create_title_change_note(issuable, old_title)
|
|
|
|
SystemNoteService.change_title(
|
|
|
|
issuable, issuable.project, current_user, old_title)
|
|
|
|
end
|
2015-05-28 21:00:37 -04:00
|
|
|
|
|
|
|
def create_branch_change_note(issuable, branch_type, old_branch, new_branch)
|
|
|
|
SystemNoteService.change_branch(
|
|
|
|
issuable, issuable.project, current_user, branch_type,
|
|
|
|
old_branch, new_branch)
|
|
|
|
end
|
2014-10-07 10:09:28 -04:00
|
|
|
end
|