2020-03-09 17:57:10 +00:00
|
|
|
class Api::V1::Accounts::CannedResponsesController < Api::BaseController
|
2019-08-14 09:48:44 +00:00
|
|
|
before_action :fetch_canned_response, only: [:update, :destroy]
|
|
|
|
|
|
|
|
def index
|
|
|
|
render json: canned_responses
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@canned_response = current_account.canned_responses.new(canned_response_params)
|
|
|
|
@canned_response.save!
|
|
|
|
render json: @canned_response
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2019-12-10 04:59:35 +00:00
|
|
|
@canned_response.update!(canned_response_params)
|
2019-08-14 09:48:44 +00:00
|
|
|
render json: @canned_response
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@canned_response.destroy
|
|
|
|
head :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def fetch_canned_response
|
|
|
|
@canned_response = current_account.canned_responses.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def canned_response_params
|
|
|
|
params.require(:canned_response).permit(:short_code, :content)
|
|
|
|
end
|
|
|
|
|
|
|
|
def canned_responses
|
|
|
|
if params[:search]
|
2019-10-20 08:47:26 +00:00
|
|
|
current_account.canned_responses.where('short_code ILIKE ?', "#{params[:search]}%")
|
2019-08-14 09:48:44 +00:00
|
|
|
else
|
|
|
|
current_account.canned_responses
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|