sanger/sequencescape

View on GitHub
app/controllers/api/v2/custom_metadatum_collections_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Api
  module V2
    # Provides a JSON API controller for custom_metadatum_collection
    # See: http://jsonapi-resources.com/ for JSONAPI::Resource documentation
    class CustomMetadatumCollectionsController < JSONAPI::ResourceController
      # By default JSONAPI::ResourceController provides most the standard
      # behaviour, and in many cases this file may be left empty.
    end
  end
end