Hi,
I created an invite-only hobo app that has no publich registration page.
As I understand, an Admin has to be logged in to create the user and the 
admin subsites must be available.

to see the Users list adding the following to the routes config

  namespace :admin do
    resources :users
  end

now I see the "Invite a new user" on the page, but it is not an <a> tag, 
because there is no valid route to it.

The following change makes the link real:

  namespace :admin do
    match 'users/invite', :controller => 'Users', :action => 'invite'
    resources :users
  end

After clicking "invite" an empty invite form returns and no dataset is 
created.

How can I create new users in an invite-only hobo app?
I could only find docs how to turn an app into private mode, but nothing 
about creating new users.

thanks,
ALex.

-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/hobousers?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to