how to make normal user as admin

hi,    I am using rails 3.0.10, i had created user and admin using devise, i want to make normal user as admin, can anyone help me on how to make user as admin

Thanks Kapil

The easiest way is probably to just have a boolean “is_admin” field on the user model.

Really depends on your other requirements though.

hi,   I am using rails 3.0.10, i had created user and admin using devise, i want to make normal user as admin, can anyone help me on how to make user as admin

Have you created two different models, one for admin and one for user? Or are you using an authorization scheme where you give individual users (all the same model) different roles?

Walter

It’s there on the wiki

https://github.com/plataformatec/devise/wiki/How-To:-Add-an-Admin-role

Ahmy Yulrizka

I am using different models for user and admin

ya, I used the same link for for creating admin role, but now i want to make user to act as another admin

I followed to create admin and users roles in the following links

https://github.com/plataformatec/devise/wiki/How-To:-Add-an-Admin-role

I used different models for admin and user But now i want to make the some users to act as admin, please tell me the process of making a user as admin

The great way to use Devise , for me, it’s t couple it with the Gem CANCAN to manage capabilities. Then

you just have to make a migration to add different ‘role’ to the user(with devise) like ‘ADMIN’, ‘COMMON’,or ‘VISITOR’.

Checkout the Readme.md of the gem Cancan on these suitable links:

video tuts of Ryanb Baytes : http://railscasts.com/episodes/192-authorization-with-cancan

The gem on Github: https://github.com/ryanb/cancan

I hope this will help you.

Good luck :wink: