Add additional views within Rodauth #164
Unanswered
shafiqapandi
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Yes, but in this case you could just use classic Rails, for example: # config/routes.rb
Rails.application.routes.draw do
get "sign-up-confirm", to: "rodauth#sign_up_confirm"
end # app/controllers/rodauth_controller.rb
class RodauthController < ApplicationController
def sign_up_controller
render "sign-up-confirm"
end
end Note that you don't need to use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Janko
Is it possible to add additional routes and views within Rodauth?
somewhat like this perhaps
Beta Was this translation helpful? Give feedback.
All reactions