Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
library-app-django
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ilham Maulana
library-app-django
Commits
b04865eb
Commit
b04865eb
authored
Aug 12, 2024
by
Ilham Maulana
💻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: member register
parent
a8cb9a99
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
views.py
api/auth/views.py
+1
-0
No files found.
api/auth/views.py
View file @
b04865eb
...
@@ -56,6 +56,7 @@ def registerUserView(request):
...
@@ -56,6 +56,7 @@ def registerUserView(request):
user
=
User
.
objects
.
create_user
(
user
=
User
.
objects
.
create_user
(
username
=
username
,
email
=
email
,
password
=
password
username
=
username
,
email
=
email
,
password
=
password
)
)
Member
.
objects
.
create
(
user
=
user
)
expired
=
timezone
.
now
()
+
timezone
.
timedelta
(
days
=
1
)
expired
=
timezone
.
now
()
+
timezone
.
timedelta
(
days
=
1
)
payload
=
{
"user_id"
:
user
.
pk
,
"exp"
:
expired
}
payload
=
{
"user_id"
:
user
.
pk
,
"exp"
:
expired
}
token
=
jwt
.
encode
(
payload
,
key
=
"secret"
,
algorithm
=
"HS256"
)
token
=
jwt
.
encode
(
payload
,
key
=
"secret"
,
algorithm
=
"HS256"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment