I'm using devise to create users directly from console, in consequence not using the :registerable
module.
The way to create users from the console is by providing email, password and password_conformation this way:
User.create(email: '[email protected]', password: '1234', password_conformation: '1234')
Now I have installed the Administrate gem and I would like to be able to create users directly from there. I already can edit custom fields and destroy users, but I don't know how to create them since neither password or password_confirmation belongs to the User table. Any Thoughts?
I added the
password
andpassword_confirmation
fields to the dashboard and it worked like a charm, following I have included a sample of the dashboard with the relevant fields.I tested this on:
Rails 6
Devise 4.7.1
Administrate 0.12.0