module Auth

Defined in:

auth/app.cr
auth/emails/password_reset_email.cr
auth/handlers/concerns/require_anonymous_user.cr
auth/handlers/concerns/require_signed_in_user.cr
auth/handlers/password_reset_confirm_handler.cr
auth/handlers/password_reset_initiate_handler.cr
auth/handlers/profile_handler.cr
auth/handlers/sign_in_handler.cr
auth/handlers/sign_out_handler.cr
auth/handlers/sign_up_handler.cr
auth/models/user.cr
auth/routes.cr
auth/schemas/password_reset_confirm_schema.cr
auth/schemas/password_reset_initiate_schema.cr
auth/schemas/sign_in_schema.cr
auth/schemas/sign_up_schema.cr

Constant Summary

ROUTES = Marten::Routing::Map.draw do path("/signup", SignUpHandler, name: "sign_up") path("/signin", SignInHandler, name: "sign_in") path("/signout", SignOutHandler, name: "sign_out") path("/reset-password/initiate", PasswordResetInitiateHandler, name: "password_reset_initiate") path("/reset-password/confirm/<uid:str>/<token:str>", PasswordResetConfirmHandler, name: "password_reset_confirm") path("/me", ProfileHandler, name: "profile") end