Add API/Registrant/Domains route

This commit is contained in:
Maciej Szlosarczyk 2018-07-26 14:46:03 +03:00
parent 311aa503b3
commit 0ab9f6333f
No known key found for this signature in database
GPG key ID: 41D62D42D3B0D765
4 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,17 @@
require 'rails5_api_controller_backport'
module Api
module V1
module Registrant
class DomainsController < ActionController::API
def index
render json: { success: true }
end
def show
render json: { success: true }
end
end
end
end
end