You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
634 B

# an user for administrative purposes
admin = User.create!(
:first_name => 'admin',
:last_name => 'admin',
:email => 'admin@entrydns.net',
:password => 'garlik1',
:password_confirmation => 'garlik1',
:confirmed_at => Time.now
)
for name in Settings.host_domains
entrudns_org = Domain.new(:name => name, :type => 'NATIVE', :user_id => admin.id)
entrudns_org.setup(admin.email)
entrudns_org.save!
end
# sample user
user = User.create!(
:first_name => 'user',
:last_name => 'user',
:email => 'user@entrydns.net',
:password => 'useruser',
:password_confirmation => 'useruser',
:confirmed_at => Time.now
)