Show action with Devise

Hi, Devise has edit and new views for registrations, I’d like to add a
show
view to display that information.

How can I do that?

If I overwrite the controller RegistrationsController <
Devise::RegistrationsController, it says: “Missing template
registrations/show, …”, but I want to render the view that is inside
users/registrations (the generated view for “rails generate devise:views
users”) that I just added, so users/registrations/show.html.erb.

Thanks in advance