Add support for Authentication models #3
Labels
enhancement
New feature or request
Post-Release-Feature
A nice feature not necessary to be included for Snorlogue 1.0
Similar to Django, in order to provide "log-in" capabilities, an Authentication Model is required.
Admins can then authenticate against that model.
That means a model where the user can store a password and have it automatically get hashed according to some configured encryption method.
This means re-building Django's way of encrypting, including providing several ways to do so that can be swapped out depending on a configuration value (only new values get hashed with the new method, old entries can't be rehashed but must still work).
Further it means supporting password fields in the frontend forms.
Further it means that the extension must be able to check whether the model already exists on the database and if it doesn't, either add it or throw an error that it must be added.
The text was updated successfully, but these errors were encountered: