Saturday, 24 August 2013

User Management through Refinery

User Management through Refinery

Tried using refinery with an exiting devise rails app. It works well but
in the refinery backend console, I do not see a tab for users as shown
here http://demo.refinerycms.com/refinery
The guide says
Now if you want to be able to edit the User model from refinery, then you
should make sure the User table matches the Refinery::User table exactly.
In most cases with devise, it is as simple as adding the username column
to the users table and making that attribute accessible in the model. Next
you can set up the following initializer:
config/initializers/refinery_class_substitutions.rb
class Refinery::User < User; end class Refinery::Role < Role; end
Does that mean that if I have additional fields in my User table, I cannot
manage them through refinery users console?

No comments:

Post a Comment