mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
make sure user is a superuser before showing upgrade notification
This commit is contained in:
parent
bfebc23f42
commit
bfcff2f78f
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@
|
|||
</div>
|
||||
|
||||
<script>
|
||||
{% if user.is_authenticated and CAN_UPGRADE %}
|
||||
{% if user.is_authenticated and user.is_superuser and CAN_UPGRADE %}
|
||||
if (!localStorage.getItem("bannerDismissed")) {
|
||||
const upgradeVersionTag = "{{VERSIONS_AVAILABLE.recommended_version.tag_name}}"
|
||||
const upgradeVersionURL = "{{VERSIONS_AVAILABLE.recommended_version.html_url}}"
|
||||
|
|
Loading…
Reference in a new issue