Sha256: 6b0a5d3b7ef44505fc2930a6de6575da53d58b8ec2dbf97c1aa26300a7f7cef6
Contents?: true
Size: 547 Bytes
Versions: 5
Compression:
Stored size: 547 Bytes
Contents
# frozen_string_literal: true module Api module V2 class PreupgradeReportsController < ::Api::V2::BaseController before_action :find_resource, only: %i[show] api :GET, '/preupgrade_reports/', N_('List Preupgrade reports') param_group :search_and_pagination, ::Api::V2::BaseController def index @preupgrade_reports = resource_scope_for_index end api :GET, '/preupgrade_reports/:id', N_('Show Preupgrade report') param :id, :identifier, required: true def show; end end end end
Version data entries
5 entries across 5 versions & 1 rubygems