2017-10-07 14:26:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-11 14:23:33 -05:00
|
|
|
module Admin
|
|
|
|
class AccountModerationNotesController < BaseController
|
|
|
|
before_action :set_account_moderation_note, only: [:destroy]
|
|
|
|
|
|
|
|
def create
|
|
|
|
authorize AccountModerationNote, :create?
|
|
|
|
|
|
|
|
@account_moderation_note = current_account.account_moderation_notes.new(resource_params)
|
|
|
|
|
|
|
|
if @account_moderation_note.save
|
|
|
|
redirect_to admin_account_path(@account_moderation_note.target_account_id), notice: I18n.t('admin.account_moderation_notes.created_msg')
|
|
|
|
else
|
|
|
|
@account = @account_moderation_note.target_account
|
|
|
|
@moderation_notes = @account.targeted_moderation_notes.latest
|
|
|
|
|
|
|
|
render template: 'admin/accounts/show'
|
|
|
|
end
|
2017-10-07 14:26:43 -04:00
|
|
|
end
|
|
|
|
|
2017-11-11 14:23:33 -05:00
|
|
|
def destroy
|
|
|
|
authorize @account_moderation_note, :destroy?
|
2017-11-23 20:05:53 -05:00
|
|
|
@account_moderation_note.destroy!
|
2017-11-11 14:23:33 -05:00
|
|
|
redirect_to admin_account_path(@account_moderation_note.target_account_id), notice: I18n.t('admin.account_moderation_notes.destroyed_msg')
|
|
|
|
end
|
2017-10-07 14:26:43 -04:00
|
|
|
|
2017-11-11 14:23:33 -05:00
|
|
|
private
|
2017-10-07 14:26:43 -04:00
|
|
|
|
2017-11-11 14:23:33 -05:00
|
|
|
def resource_params
|
|
|
|
params.require(:account_moderation_note).permit(
|
|
|
|
:content,
|
|
|
|
:target_account_id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_account_moderation_note
|
|
|
|
@account_moderation_note = AccountModerationNote.find(params[:id])
|
|
|
|
end
|
2017-10-07 14:26:43 -04:00
|
|
|
end
|
|
|
|
end
|