tag corrections: remove distributed cache logic (#3943).

Remove logic for displaying the state of the tag category cache on both
servers.
This commit is contained in:
evazion
2018-10-04 13:46:10 -05:00
parent 4ab97a01bd
commit c78dece411
4 changed files with 22 additions and 49 deletions

View File

@@ -1,12 +1,15 @@
class TagCorrectionsController < ApplicationController
respond_to :html, :json, :xml
before_action :builder_only, only: [:new, :create]
def new
@correction = TagCorrection.new(params[:tag_id])
respond_with(@correction)
end
def show
@correction = TagCorrection.new(params[:tag_id])
respond_with(@correction)
end
def create