mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
9 lines
230 B
Ruby
9 lines
230 B
Ruby
class Registrant::WhoisController < RegistrantController
|
|
def index
|
|
authorize! :view, :registrant_whois
|
|
|
|
if params[:domain_name].present?
|
|
@domain = WhoisRecord.find_by(name: params[:domain_name]);
|
|
end
|
|
end
|
|
end
|