Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
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
ops
jumpserver
Commits
924affd9
Commit
924affd9
authored
Mar 04, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 更新移动的model
parent
ad6d233c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
+3
-9
0019_auto_20190304_1459.py
apps/users/migrations/0019_auto_20190304_1459.py
+2
-2
user.py
apps/users/models/user.py
+1
-7
No files found.
apps/users/migrations/0019_auto_20190304_1459.py
View file @
924affd9
...
...
@@ -10,8 +10,8 @@ class Migration(migrations.Migration):
]
database_operations
=
[
migrations
.
AlterModelTable
(
name
=
'accesskey'
,
table
=
'autentication_accesskey'
),
migrations
.
AlterModelTable
(
name
=
'privatetoken'
,
table
=
'autentication_privatetoken'
),
migrations
.
AlterModelTable
(
name
=
'accesskey'
,
table
=
'aut
h
entication_accesskey'
),
migrations
.
AlterModelTable
(
name
=
'privatetoken'
,
table
=
'aut
h
entication_privatetoken'
),
migrations
.
AlterModelTable
(
name
=
'loginlog'
,
table
=
'audits_userloginlog'
),
]
...
...
apps/users/models/user.py
View file @
924affd9
...
...
@@ -321,8 +321,7 @@ class User(AbstractUser):
pass
def
create_access_key
(
self
):
from
.
import
AccessKey
access_key
=
AccessKey
.
objects
.
create
(
user
=
self
)
access_key
=
self
.
access_keys
.
create
()
return
access_key
@property
...
...
@@ -334,11 +333,6 @@ class User(AbstractUser):
return
True
return
False
def
check_public_key
(
self
,
public_key
):
if
self
.
ssh_public_key
==
public_key
:
return
True
return
False
def
avatar_url
(
self
):
admin_default
=
settings
.
STATIC_URL
+
"img/avatar/admin.png"
user_default
=
settings
.
STATIC_URL
+
"img/avatar/user.png"
...
...
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