badar_madeena/app/controllers/institutions_controller.rb

74 lines
2.1 KiB
Ruby

class InstitutionsController < ApplicationController
before_action :set_institution, only: %i[ show edit update destroy ]
# GET /institutions or /institutions.json
def index
@institutions = Institution.all
@programs = Program.all
@ziyaras = Ziyara.all
end
# GET /institutions/1 or /institutions/1.json
def show
end
# GET /institutions/new
def new
@institution = Institution.new
end
# GET /institutions/1/edit
def edit
end
# POST /institutions or /institutions.json
def create
@institution = Institution.new(institution_params)
respond_to do |format|
if @institution.save
format.html { redirect_to @institution, notice: "Institution was successfully created." }
format.json { render :show, status: :created, location: @institution }
else
format.html { render :new, status: :unprocessable_entity }
format.json { render json: @institution.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /institutions/1 or /institutions/1.json
def update
respond_to do |format|
if @institution.update(institution_params)
format.html { redirect_to @institution, notice: "Institution was successfully updated.", status: :see_other }
format.json { render :show, status: :ok, location: @institution }
else
format.html { render :edit, status: :unprocessable_entity }
format.json { render json: @institution.errors, status: :unprocessable_entity }
end
end
end
# DELETE /institutions/1 or /institutions/1.json
def destroy
@institution.destroy!
respond_to do |format|
format.html { redirect_to institutions_path, notice: "Institution was successfully destroyed.", status: :see_other }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_institution
@institution = Institution.find(params.expect(:id))
end
# Only allow a list of trusted parameters through.
def institution_params
params.expect(institution: [ :name, :institution_type ])
end
end