darthjee/azeroth

View on GitHub
lib/azeroth/request_handler/edit.rb

Summary

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

module Azeroth
  class RequestHandler
    # @api private
    #
    # hadler for requests to edit resources
    #
    # This handler does the same as {Show}
    # returning the model for editing
    class Edit < RequestHandler::Show
    end
  end
end