aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/templates/views
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-04-26 09:34:29 +0300
committerGravatar Vitaly Takmazov2023-04-26 09:34:29 +0300
commitfc5f8e888c9ccfda7d739493c439437a917b9902 (patch)
treecb89cdb606b3296ef20c97b749a50d447b0d4a70 /src/main/resources/templates/views
parent90201606bb485988f5a85cd578f3f5b8ecddf4db (diff)
Expose 'isAdmin' user property over API
Diffstat (limited to 'src/main/resources/templates/views')
-rw-r--r--src/main/resources/templates/views/partial/usercolumn.html2
-rw-r--r--src/main/resources/templates/views/thread.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/templates/views/partial/usercolumn.html b/src/main/resources/templates/views/partial/usercolumn.html
index aec72c58..70d20083 100644
--- a/src/main/resources/templates/views/partial/usercolumn.html
+++ b/src/main/resources/templates/views/partial/usercolumn.html
@@ -27,7 +27,7 @@
<span class="desktop">Block</span>
</a>
{% endif %}
- {% if visitor.premium or beans.userServiceImpl.isAdminUser(visitor) %}
+ {% if visitor.premium or visitor.admin %}
{% if isInWL %}
<a href="/api/users/wl?nick={{ user.name }}" data-name={{ user.name }} class="a-vip">
<i data-icon="ei-unlock" data-size="s"></i>
diff --git a/src/main/resources/templates/views/thread.html b/src/main/resources/templates/views/thread.html
index 3974fddb..19d81d75 100644
--- a/src/main/resources/templates/views/thread.html
+++ b/src/main/resources/templates/views/thread.html
@@ -40,7 +40,7 @@
</div>
{% endif %}
<nav class="l">
- {% if visitor.uid == msg.user.uid and (msg.user.premium or beans.userServiceImpl.isAdminUser(msg.user)) %}
+ {% if visitor.uid == msg.user.uid and (msg.user.premium or msg.user.admin) %}
<a href="/{{ msg.mid }}" class="a-privacy msg-button">
<span class="msg-button-icon">
{% if msg.friendsOnly %}