Add 204. Remove duplicated method.

This commit is contained in:
Shinya Maeda 2017-08-01 21:17:46 +09:00
parent 0bbf006454
commit 0c5fbaa72b
2 changed files with 1 additions and 4 deletions

View File

@ -88,6 +88,7 @@ module API
variable = user_group.variables.find_by(key: params[:key])
not_found!('GroupVariable') unless variable
status 204
variable.destroy
end
end

View File

@ -33,10 +33,6 @@ module API
@project ||= find_project!(params[:id])
end
def user_group
@group ||= find_group!(params[:id])
end
def available_labels
@available_labels ||= LabelsFinder.new(current_user, project_id: user_project.id).execute
end