Change password length

Hey,
What is the appropriated way to modify the needed password length for users? Sure, I could simply change the register.yaml schema for Fortress but since I like the approach of not modifying the core, and I want to learn it the right way, I was wondering if there is any other possibility.
I guess I could override the route to my own registration (just a copy) and request a different schema.
I also read that overriding a schema isn’t wanted as feature but I think that would solve it the cleanest way.
-ZeCjy

You should be able to override register.yaml in your own Sprinkle, and UF will automatically use that version instead.

1 Like

Wow, I just realised that the sub-folder is called requests and not request.
Thank you very much!