23 lines
308 B
Ruby
Executable File
23 lines
308 B
Ruby
Executable File
# -*- encoding : utf-8 -*-
|
|
|
|
class Admin::ContactsController < ApplicationController
|
|
before_filter :auth_admin
|
|
|
|
layout "admin"
|
|
|
|
|
|
|
|
|
|
def index
|
|
@contacts = Contact.where(:raison_id => params[:raison_id].to_i).order("created_at DESC")
|
|
end
|
|
|
|
|
|
def show
|
|
@contact = Contact.find(params[:id])
|
|
end
|
|
|
|
|
|
|
|
end
|