Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iss2205 #2355

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Iss2205 #2355

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions evap/staff/staff_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@


def update_staff_mode(request):
if not request.user.has_staff_permission:
exit_staff_mode(request)
return

Check warning on line 57 in evap/staff/staff_mode.py

View check run for this annotation

Codecov / codecov/patch

evap/staff/staff_mode.py#L56-L57

Added lines #L56 - L57 were not covered by tests
assert request.user.has_staff_permission

request.session["staff_mode_start_time"] = time.time()
Expand Down
Loading