Skip to content

Instantly share code, notes, and snippets.

@CH-JesseMa
CH-JesseMa / CRUD_controller.rb
Created May 12, 2014 21:06
CRUD Controller (template)
class AppointmentsController < ApplicationController
def index
@appointments = Appointment.all
end
def show
@appointment = Appointment.find(params[:id])
end
def new