mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
16 lines
429 B
Ruby
16 lines
429 B
Ruby
class Registrant::DomainUpdateConfirmsController < RegistrantController
|
|
skip_before_action :authenticate_user!, only: [:show, :create]
|
|
skip_authorization_check only: [:show, :create]
|
|
|
|
def show
|
|
@domain = Domain.find(params[:id])
|
|
|
|
# if @domain.present? && params[:token].present? && @domain.registrant_verification_token == params[:token]
|
|
# else
|
|
# @domain = nil
|
|
# end
|
|
end
|
|
|
|
def create
|
|
end
|
|
end
|