On 23 Dez., 15:31, Amita Bhatkhande <[email protected]>
wrote:
> What I would like to do:
> When user runs the application and no admin account exists, then display
> a signup/create admin form to create an admin account.
if i understand correctly, you need to write some code roughly like
the following in your controller:

if User.find(:all, :conditions => {:group_id => Group.find_by_name
("admin").id}).size == 0
  # render create_admin_account as none exists so far
else
  # admin-account exists => just login
end


> Problem: Every time user clicks on the login button, the method to make
> admin account if no exists is called upon.
do you already have some code to see where what could be wrong about
it?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to