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
637fc914
Commit
637fc914
authored
Jul 30, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 密码过期邮件发送(密码未过期用户&有效用户)
parent
b5aa69db
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
user.py
apps/users/models/user.py
+1
-1
tasks.py
apps/users/tasks.py
+4
-4
No files found.
apps/users/models/user.py
View file @
637fc914
...
@@ -111,7 +111,7 @@ class AuthMixin:
...
@@ -111,7 +111,7 @@ class AuthMixin:
@property
@property
def
password_will_expired
(
self
):
def
password_will_expired
(
self
):
if
self
.
is_local
and
self
.
password_expired_remain_days
<
5
:
if
self
.
is_local
and
0
<=
self
.
password_expired_remain_days
<
5
:
return
True
return
True
return
False
return
False
...
...
apps/users/tasks.py
View file @
637fc914
...
@@ -20,13 +20,13 @@ logger = get_logger(__file__)
...
@@ -20,13 +20,13 @@ logger = get_logger(__file__)
def
check_password_expired
():
def
check_password_expired
():
users
=
User
.
objects
.
exclude
(
role
=
User
.
ROLE_APP
)
users
=
User
.
objects
.
exclude
(
role
=
User
.
ROLE_APP
)
for
user
in
users
:
for
user
in
users
:
if
not
user
.
is_valid
:
continue
if
not
user
.
password_will_expired
:
if
not
user
.
password_will_expired
:
continue
continue
send_password_expiration_reminder_mail
(
user
)
send_password_expiration_reminder_mail
(
user
)
logger
.
info
(
"The user {} password expires in {} days"
.
format
(
msg
=
"The user {} password expires in {} days"
user
,
user
.
password_expired_remain_days
)
logger
.
info
(
msg
.
format
(
user
,
user
.
password_expired_remain_days
))
)
@shared_task
@shared_task
...
...
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