Mo.
Mo.

Reputation: 42523

simple user authentication and creation plugin in rails?

i have a simple record system in rails, it has customers, appointments and visits as models.

with visits and appointments belonging to customer.

i want a simple authentication plug-in for the owner of the application, to be able to log in and edit and create new data in the system (administrator user) and be able to add new admin users to be able to log in to the system.

a plus would be if the plug-in allowed the admin user to also create customer accounts for customers to be able to go on line check their own customer profile, appointments and visits details.

so basically a authentication plug-in for a super user and a limited user (to view their own profiles).

i don't want anything too fancy to be honest like sending a verification e mail etc.

thanks

Upvotes: 0

Views: 216

Answers (3)

nictrix
nictrix

Reputation: 1483

If you need simple

Check out: http://code.google.com/p/rolerequirement/

Use that with the restful-authentication plugin

I use it in 2-3 projects and it works great, I even did some hacking to enable ldap authentication too.

Upvotes: 1

heavysixer
heavysixer

Reputation: 2069

I have a plugin for doing simple Role-based Access Control:

http://github.com/heavysixer/rolesystem

Upvotes: 1

Related Questions