brandonbaker40/turbo_invoice_backend

View on GitHub
app/controllers/patients_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# PatientsController
class PatientsController < ApplicationController
  before_action :set_patient, only: %i[show update destroy]

  # GET /patients
  def index
    @patients = Patient.all

    render json: @patients
  end

  # GET /patients/1
  def show
    render json: @patient
  end

  # POST /patients
  def create
    @patient = Patient.new(patient_params)

    if @patient.save
      render json: @patient, status: :created, location: @patient
    else
      render json: @patient.errors, status: :unprocessable_entity
    end
  end

  # PATCH/PUT /patients/1
  def update
    if @patient.update(patient_params)
      render json: @patient
    else
      render json: @patient.errors, status: :unprocessable_entity
    end
  end

  # DELETE /patients/1
  def destroy
    @patient.destroy
  end

  private

  # Use callbacks to share common setup or constraints between actions.
  def set_patient
    @patient = Patient.find(params[:id])
  end

  # Only allow a trusted parameter "white list" through.
  def patient_params
    # rubocop:disable Metrics/LineLength
    params.require(:patient).permit(:first_name, :last_name, :sex, :date_of_birth, :agency_id)
    # rubocop:enable Metrics/LineLength
  end
end