Page MenuHomeGRNET

domains_helper.rb
No OneTemporary

File Metadata

Created
Tue, Sep 8, 12:11 AM

domains_helper.rb

module DomainsHelper
# Human names for domain states
def human_state(state)
case state.to_sym
when :initial then 'Initial'
when :pending_install then 'Becoming public'
when :pending_dnssec then 'Migrating to dnssec'
when :pending_plain then 'Removing dnssec'
when :pending_remove then 'Preparing removal'
when :operational then 'Operational'
when :destroy then 'Ready to be destroyed'
else
state
end
end
end

Event Timeline