I’m trying to create a User show page (that will function as a profile page) but am confused about how to do this with Devise. It doesn’t seem as though Devise comes with any sort of show definition – is there any way I can access the controllers Devise is implementing in order to make one or do I have to override them?
I’m trying to create a User show page (that will function as a profile
Share
You should generate a
users_controllerwhich inherits fromapplication_controllerand define there your customshowmethod. Don’t forget to create a view and routes for it.Ex: