hutschen / mv-tool-api

Measure tracking tool for the implementation of information security measures in projects
https://mv-tool.readthedocs.io
GNU Affero General Public License v3.0
2 stars 0 forks source link

Refactoring User Authentication into a Separate `auth` Package #173

Open hutschen opened 10 months ago

hutschen commented 10 months ago

User authentication against LDAP and JIRA is currently handled in two separate modules, auth.py and ldap_auth.py. These modules are to be consolidated into a new package named auth, centralizing the user authentication process. Instead of the currently used LdapJiraDummy class, a generic User class will be introduced. The implementation of this ticket should be done in preparation for ticket #172.

hutschen commented 9 months ago

Consolidation of the auth.py and ldap_auth.py modules into the auth package has been implemented in 9c7bddcc57f26240957335a5a43bba881b580720. The generic `User' class is not implemented yet.