Sha256: a0276eae43763726c61acdea4635ce772145ae7e9c89c9cdc9e4b72fe65035c4

Contents?: true

Size: 1009 Bytes

Versions: 3

Compression:

Stored size: 1009 Bytes

Contents

class AppointmentsController < ApplicationController
  around_action :use_current_timezone

  def index
    @appointments = Appointment.all
  end

  def new
    @appointment = Appointment.new
  end

  def create
    @appointment = Appointment.new(params.require(:appointment).permit(:scheduled_at))
    if @appointment.save
      redirect_to edit_appointment_path(@appointment), notice: 'Appointment was successfully created.'
    else
      render :new
    end
  end

  def edit
    @appointment = Appointment.find(params[:id])
  end

  def update
    @appointment = Appointment.find(params[:id])
    if @appointment.update(params.require(:appointment).permit(:scheduled_at))
      redirect_to edit_appointment_path(@appointment), notice: "Appointment was successfully updated."
    else
      render :edit
    end
  end

  private
    def use_current_timezone(&block)
      Time.use_zone(current_timezone, &block)
    end

    def current_timezone
      ENV.fetch('CURRENT_TIMEZONE') { 'UTC' }
    end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
datetime_picker_input-4.17.47 spec/dummy/app/controllers/appointments_controller.rb
datetime_picker_input-4.17.37.1 spec/dummy/app/controllers/appointments_controller.rb
datetime_picker_input-4.17.37 spec/dummy/app/controllers/appointments_controller.rb