b9b2d08638
Closes #2092
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
class IssuableBaseService < BaseService
|
|
private
|
|
|
|
def create_assignee_note(issuable)
|
|
SystemNoteService.change_assignee(
|
|
issuable, issuable.project, current_user, issuable.assignee)
|
|
end
|
|
|
|
def create_milestone_note(issuable)
|
|
SystemNoteService.change_milestone(
|
|
issuable, issuable.project, current_user, issuable.milestone)
|
|
end
|
|
|
|
def create_labels_note(issuable, added_labels, removed_labels)
|
|
SystemNoteService.change_label(
|
|
issuable, issuable.project, current_user, added_labels, removed_labels)
|
|
end
|
|
|
|
def create_title_change_note(issuable, old_title)
|
|
SystemNoteService.change_title(
|
|
issuable, issuable.project, current_user, old_title)
|
|
end
|
|
|
|
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
|
|
|
|
def filter_params(issuable_ability_name = :issue)
|
|
ability = :"admin_#{issuable_ability_name}"
|
|
|
|
unless can?(current_user, ability, project)
|
|
params.delete(:milestone_id)
|
|
params.delete(:label_ids)
|
|
params.delete(:assignee_id)
|
|
end
|
|
end
|
|
end
|