chore(AshAuthenticationPhoenix): added library and updated ressources testing password strategy
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
carla 2025-06-03 08:39:28 +02:00
parent 9ffb8f7170
commit 483e506361
Signed by: carla
GPG key ID: 908AFB7283DFC1B3
24 changed files with 695 additions and 29 deletions

View file

@ -0,0 +1,20 @@
defmodule MvWeb.AuthOverrides do
use AshAuthentication.Phoenix.Overrides
# configure your UI overrides here
# First argument to `override` is the component name you are overriding.
# The body contains any number of configurations you wish to override
# Below are some examples
# For a complete reference, see https://hexdocs.pm/ash_authentication_phoenix/ui-overrides.html
# override AshAuthentication.Phoenix.Components.Banner do
# set :image_url, "https://media.giphy.com/media/g7GKcSzwQfugw/giphy.gif"
# set :text_class, "bg-red-500"
# end
# override AshAuthentication.Phoenix.Components.SignIn do
# set :show_banner, false
# end
end