support-foo/web

View on GitHub
app/controllers/canned_responses_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CannedResponsesController < ApplicationController
  before_action :authenticate_user!
  before_action :find_account!
  before_action :find_canned_response!, only: [:show, :edit, :update, :destroy]

  respond_to :html, :json

  def index
    respond_with @canned_responses = @account.canned_responses
  end

  def new
    respond_with @canned_response = @account.canned_responses.new
  end

  def create
    @canned_response = @account.canned_responses.new(canned_response_params)

    if @canned_response.save
      redirect_to account_canned_responses_path(@account)
    else
      render :new
    end
  end

  def show
    respond_with @canned_response
  end

  def edit
  end

  def update
    if @canned_response.update(canned_response_params)
      redirect_to account_canned_responses_path(@account)
    else
      render :edit
    end
  end

  def destroy
    @canned_response.destroy
    redirect_to account_canned_responses_path(@account)
  end

  def find_account!
    @account = Account.find_by!(slug: params.fetch(:account_id))
    authorize! AccountReadPolicy.new(@account, current_user)
  end

  def find_canned_response!
    @canned_response = @account.canned_responses.find(params[:id])
  end

  def canned_response_params
    params.require(:canned_response).permit(:key, :message)
  end
end