Add auth and ruby update
This commit is contained in:
parent
5d50194f39
commit
fbf6923835
43 changed files with 614 additions and 64 deletions
25
app/misc/rodauth_app.rb
Normal file
25
app/misc/rodauth_app.rb
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
class RodauthApp < Rodauth::Rails::App
|
||||
# primary configuration
|
||||
configure RodauthMain
|
||||
|
||||
# secondary configuration
|
||||
# configure RodauthAdmin, :admin
|
||||
|
||||
route do |r|
|
||||
rodauth.load_memory # autologin remembered users
|
||||
|
||||
r.rodauth # route rodauth requests
|
||||
|
||||
# ==> Authenticating requests
|
||||
# Call `rodauth.require_account` for requests that you want to
|
||||
# require authentication for. For example:
|
||||
#
|
||||
# # authenticate /dashboard/* and /account/* requests
|
||||
# if r.path.start_with?("/dashboard") || r.path.start_with?("/account")
|
||||
# rodauth.require_account
|
||||
# end
|
||||
|
||||
# ==> Secondary configurations
|
||||
# r.rodauth(:admin) # route admin rodauth requests
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue