I'm using devise/cancan for my app and everything is pretty sound -- provided a user creates an account and signs in.

What I'd like to do is allow a user to get started without creating an account. And then sign up if they want to actually save their work.

Has anybody come across this before? Should I be figuring out how to create dummy accounts with devise? Or allowing unauthorized users access to creating models in my app via CanCan?

I could go into detail about how I've been thinking about approaching this, but it feels like a pretty obvious use case that somebody has come up with a nice solution for.

Thanks in advance, Mike

link|improve this question

56% accept rate
feedback

2 Answers

up vote 1 down vote accepted

If you go with creating dummy accounts, you would have to track the user somehow via a cookie and cache the values in that cookie in your db. Cancan does allow for guest accounts via the ability model. For example:

user ||= User.new # Guest user, for users who are not registered or don't have an account yet

Which is enough you to you started with applying permissions for non registered users. Note though, tracking by cookie alone is not very reliable and can lead to some type of security hazard (i.e. by means of cookie hijacking). User, one day, can also decide to clear out his cookies.

If need be, I would suggest letting the user do minimal interaction with a guest account and motivating the user to sign up / register with Devise as much as possible.

Hope that helps!

link|improve this answer
Thanks, implemented it this way for now. Seems to be going smoothly thus far. – CambridgeMike Apr 17 '11 at 23:47
feedback

I actually am considering the same problem, I have a scheduling app that makes a calendar. To get over the problem I'm thinking that you use

user ||= User.new

Like was suggested above and using cookies to get the data to the database once the user creates an account. This would mean that you would not have to worry about clearing out cookies because they would create an account if they want to save data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.