Remove the nag message when an approver hasn't approved anything
recently. Also remove the modqueue random posts page. As of 3d410398a,
inactive approvers are now warned via dmails.
11 lines
405 B
Plaintext
11 lines
405 B
Plaintext
<% if @post_disapproval.errors.any? %>
|
|
Danbooru.error("Error: " + <%= @post_disapproval.errors.full_messages.join("; ").to_json.html_safe %>);
|
|
<% else %>
|
|
if ($("#c-posts #a-show").length) {
|
|
location.reload();
|
|
} else if ($("#c-moderator-post-queues").length) {
|
|
$("#c-moderator-post-queues #post-<%= @post_disapproval.post.id %>").hide();
|
|
Danbooru.notice("Post was hidden");
|
|
}
|
|
<% end %>
|