ok, I can do the beta testing :) I commented on this in the other topic "admin subsite routes"
alex. On Saturday, February 2, 2013 4:05:33 PM UTC+1, Bryan Larsen wrote: > > There's obviously something wrong with invite-only applications. Not > too surprising, our integration tests don't cover this scenario. > They should, but integration tests are expensive & fragile. :( > > I'm going skating with my daughters now, but when I get a chance I'll > play around with a new invite-only app and try and figure out what's > broken. > > Bryan > > > On Sat, Feb 2, 2013 at 9:56 AM, Alex Greif > <[email protected]<javascript:>> > wrote: > > 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] <javascript:>. > > To post to this group, send email to [email protected]<javascript:>. > > > Visit this group at http://groups.google.com/group/hobousers?hl=en. > > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- 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.
