7838150f59
all this modifications re done in contact - rename the column last_contact to view_at - fix view - add a link in /contact/index to update the view date
82 lines
2.1 KiB
Ruby
82 lines
2.1 KiB
Ruby
class ContactsController < ApplicationController
|
|
before_action :set_contact, only: [:show, :edit, :update, :destroy, :view]
|
|
before_action :authenticate_admin!
|
|
|
|
# PATCH /view/1
|
|
def view
|
|
@contact.update(view_at: Time.now)
|
|
render json: @contact, status: :ok
|
|
end
|
|
|
|
# GET /contacts
|
|
# GET /contacts.json
|
|
def index
|
|
@contacts = Contact.all
|
|
end
|
|
|
|
# GET /contacts/1
|
|
# GET /contacts/1.json
|
|
def show
|
|
end
|
|
|
|
# GET /contacts/new
|
|
def new
|
|
@contact = Contact.new
|
|
end
|
|
|
|
# GET /contacts/1/edit
|
|
def edit
|
|
end
|
|
|
|
# POST /contacts
|
|
# POST /contacts.json
|
|
def create
|
|
@contact = Contact.new(contact_params)
|
|
|
|
respond_to do |format|
|
|
if @contact.save
|
|
format.html { redirect_to @contact, notice: 'Contact was successfully created.' }
|
|
format.json { render :show, status: :created, location: @contact }
|
|
else
|
|
format.html { render :new }
|
|
format.json { render json: @contact.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# PATCH/PUT /contacts/1
|
|
# PATCH/PUT /contacts/1.json
|
|
def update
|
|
respond_to do |format|
|
|
if @contact.update(contact_params)
|
|
format.html { redirect_to @contact, notice: 'Contact was successfully updated.' }
|
|
format.json { render :show, status: :ok, location: @contact }
|
|
else
|
|
format.html { render :edit }
|
|
format.json { render json: @contact.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# DELETE /contacts/1
|
|
# DELETE /contacts/1.json
|
|
def destroy
|
|
@contact.destroy
|
|
respond_to do |format|
|
|
format.html { redirect_to contacts_url, notice: 'Contact was successfully destroyed.' }
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_contact
|
|
@contact = Contact.find(params[:id])
|
|
end
|
|
|
|
# Never trust parameters from the scary internet, only allow the white list through.
|
|
def contact_params
|
|
params.require(:contact).permit(:client_id, :name, :phone, :email, :note, :region, :department, :postal_code, :address)
|
|
end
|
|
end
|