sanger/sequencescape

View on GitHub
app/controllers/api/v2/assets_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 Assets
    # See: http://jsonapi-resources.com/ for JSONAPI::Resource documentation
    class AssetsController < JSONAPI::ResourceController
      # By default JSONAPI::ResourceController provides most the standard
      # behaviour, and in many cases this file may be left empty.
    end
  end
end