Class: ContactsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ContactsController
- Defined in:
- app/controllers/contacts_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /contacts.
-
#destroy ⇒ Object
DELETE /contacts/1.
-
#edit ⇒ Object
GET /contacts/1/edit.
-
#index ⇒ Object
GET /contacts.
-
#new ⇒ Object
GET /contacts/new.
-
#show ⇒ Object
GET /contacts/1.
-
#update ⇒ Object
PATCH/PUT /contacts/1.
Instance Method Details
#create ⇒ Object
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 |
#destroy ⇒ Object
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 |
#edit ⇒ Object
GET /contacts/1/edit
19 20 |
# File 'app/controllers/contacts_controller.rb', line 19 def edit end |
#index ⇒ Object
GET /contacts
5 6 7 |
# File 'app/controllers/contacts_controller.rb', line 5 def index @contacts = Contact.all end |
#new ⇒ Object
GET /contacts/new
14 15 16 |
# File 'app/controllers/contacts_controller.rb', line 14 def new @contact = Contact.new end |
#show ⇒ Object
GET /contacts/1
10 11 |
# File 'app/controllers/contacts_controller.rb', line 10 def show end |
#update ⇒ Object
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 |