932a9a0c77
Fix missing iid query on NotesFinder Changed parameters of find_noteable, so changes across a few files were needed. MergeRequest also requires iid instead of id query Make NotesFinder fail with RecordNotFound again Add specs for target_iid Using RSpec tablesyntax for target_iid specs Revert "Using RSpec tablesyntax for target_iid specs" This reverts commit ba45c7f569a. Allow find_by! here Fix variable name Add readable check Revert "Add readable check" This reverts commit 9e3a1a7aa39. Remove unnecessary assignment Add required changes for EE Fix parameter count Reduce code duplication by extracting a noteable module method The call to find_noteable was redundant so multiple files and lines have changed in that commit to use the newly introduced module method `noteable`. Replace casecmp with include check Add parent_type parameter Revert "Reduce code duplication by extracting a noteable module method" This reverts commit 8c0923babff16. Method is no longer needed Check whether noteable can be read by user
53 lines
2.1 KiB
Ruby
53 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
class ResourceLabelEvents < Grape::API
|
|
include PaginationParams
|
|
helpers ::API::Helpers::NotesHelpers
|
|
|
|
before { authenticate! }
|
|
|
|
Helpers::ResourceLabelEventsHelpers.eventable_types.each do |eventable_type|
|
|
parent_type = eventable_type.parent_class.to_s.underscore
|
|
eventables_str = eventable_type.to_s.underscore.pluralize
|
|
|
|
params do
|
|
requires :id, type: String, desc: "The ID of a #{parent_type}"
|
|
end
|
|
resource parent_type.pluralize.to_sym, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
|
desc "Get a list of #{eventable_type.to_s.downcase} resource label events" do
|
|
success Entities::ResourceLabelEvent
|
|
detail 'This feature was introduced in 11.3'
|
|
end
|
|
params do
|
|
requires :eventable_id, types: [Integer, String], desc: 'The ID of the eventable'
|
|
use :pagination
|
|
end
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
get ":id/#{eventables_str}/:eventable_id/resource_label_events" do
|
|
eventable = find_noteable(parent_type, params[:id], eventable_type, params[:eventable_id])
|
|
events = eventable.resource_label_events.includes(:label, :user)
|
|
|
|
present paginate(events), with: Entities::ResourceLabelEvent
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
desc "Get a single #{eventable_type.to_s.downcase} resource label event" do
|
|
success Entities::ResourceLabelEvent
|
|
detail 'This feature was introduced in 11.3'
|
|
end
|
|
params do
|
|
requires :event_id, type: String, desc: 'The ID of a resource label event'
|
|
requires :eventable_id, types: [Integer, String], desc: 'The ID of the eventable'
|
|
end
|
|
get ":id/#{eventables_str}/:eventable_id/resource_label_events/:event_id" do
|
|
eventable = find_noteable(parent_type, params[:id], eventable_type, params[:eventable_id])
|
|
event = eventable.resource_label_events.find(params[:event_id])
|
|
|
|
present event, with: Entities::ResourceLabelEvent
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|