Remove post changes report.

This was a mod-only report that used Google BigQuery to search post
versions by tag. 2b4ee0ee8 allows all users to search post versions by
tag, so this report is no longer necessary.
This commit is contained in:
evazion
2019-09-27 21:09:27 -05:00
parent d29bbbbd71
commit 1341dbb262
5 changed files with 1 additions and 89 deletions

View File

@@ -1,21 +0,0 @@
<div id="c-reports">
<div id="a-post-versions">
<h1>Post Changes Report</h1>
<p>You can search all post changes to find when and where a tag was added or removed. Only the 1,000 most recent changes will be returned.</p>
<%= form_tag(reports_post_versions_create_path, :method => :post, :class => "simple_form") do %>
<div class="input">
<label for="tag">Tag</label>
<%= text_field_tag "tag" %>
<%= select_tag "type", options_for_select(%w(added removed)) %>
</div>
<%= submit_tag "Submit" %>
<% end %>
</div>
</div>
<% content_for(:page_title) do %>
Post Changes Report - <%= Danbooru.config.app_name %>
<% end %>

View File

@@ -1,14 +0,0 @@
<div id="c-reports">
<div id="a-post-versions-create">
<h1>Post Changes Report</h1>
<p>Only the 1,000 most recent changes are displayed.</p>
<%= render "post_versions/listing", :post_versions => @report.post_versions %>
</div>
</div>
<% content_for(:page_title) do %>
Post Changes Report - <%= Danbooru.config.app_name %>
<% end %>