Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PythonLibs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TheCodeLabs
PythonLibs
Commits
baee4f13
Commit
baee4f13
authored
4 years ago
by
Tobias Ullerich
Browse files
Options
Downloads
Patches
Plain Diff
Rename auth classes, add missing packages, update to version 1.2.1
parent
c78aa52e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
TheCodeLabs_FlaskUtils/TheCodeLabs_FlaskUtils/auth/UsernamePasswordService.py
+1
-1
1 addition, 1 deletion
...ls/TheCodeLabs_FlaskUtils/auth/UsernamePasswordService.py
TheCodeLabs_FlaskUtils/setup.py
+2
-2
2 additions, 2 deletions
TheCodeLabs_FlaskUtils/setup.py
with
3 additions
and
3 deletions
TheCodeLabs_FlaskUtils/TheCodeLabs_FlaskUtils/auth/UsernamePasswordService.py
+
1
−
1
View file @
baee4f13
import
bcrypt
class
UserService
:
class
User
namePassword
Service
:
def
__init__
(
self
,
users
):
self
.
__users
=
{}
for
user
in
users
:
...
...
This diff is collapsed.
Click to expand it.
TheCodeLabs_FlaskUtils/setup.py
+
2
−
2
View file @
baee4f13
...
...
@@ -2,8 +2,8 @@ from setuptools import setup
setup
(
name
=
'
TheCodeLabs-FlaskUtils
'
,
packages
=
[
'
TheCodeLabs_FlaskUtils
'
],
version
=
'
1.2.
0
'
,
packages
=
[
'
TheCodeLabs_FlaskUtils
'
,
'
TheCodeLabs_FlaskUtils.auth
'
],
version
=
'
1.2.
1
'
,
license
=
'
MIT
'
,
description
=
'
Useful python classes
'
,
author
=
'
TheCodeLabs
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment