Class: ContactsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/contacts_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

POST /contacts



23
24
25
26
27
28
29
30
31
# File 'app/controllers/contacts_controller.rb', line 23

def create
  @contact = Contact.new(contact_params)

  if @contact.save
    redirect_to @contact, notice: 'Contact was successfully created.'
  else
    render :new
  end
end

#destroyObject

DELETE /contacts/1



43
44
45
46
# File 'app/controllers/contacts_controller.rb', line 43

def destroy
  @contact.destroy
  redirect_to contacts_url, notice: 'Contact was successfully destroyed.'
end

#editObject

GET /contacts/1/edit



19
20
# File 'app/controllers/contacts_controller.rb', line 19

def edit
end

#indexObject

GET /contacts



5
6
7
# File 'app/controllers/contacts_controller.rb', line 5

def index
  @contacts = Contact.all
end

#newObject

GET /contacts/new



14
15
16
# File 'app/controllers/contacts_controller.rb', line 14

def new
  @contact = Contact.new
end

#showObject

GET /contacts/1



10
11
# File 'app/controllers/contacts_controller.rb', line 10

def show
end

#updateObject

PATCH/PUT /contacts/1



34
35
36
37
38
39
40
# File 'app/controllers/contacts_controller.rb', line 34

def update
  if @contact.update(contact_params)
    redirect_to @contact, notice: 'Contact was successfully updated.'
  else
    render :edit
  end
end