summaryrefslogtreecommitdiff
path: root/app/controllers/call_routes_controller.rb
blob: b0c173d5c57a77ecd30c70490c923906d6824b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
class CallRoutesController < ApplicationController
  load_and_authorize_resource :call_route
  
  before_filter :spread_breadcrumbs

  def index
    @call_routes = CallRoute.order(['`table`', :position])
    @tables = @call_routes.pluck('`table`').uniq.sort
  end

  def show
  end

  def new
  end

  def create
    @call_route = CallRoute.new(params[:call_route])
    if @call_route.save
      redirect_to @call_route, :notice => t('call_routes.controller.successfuly_created')
    else
      render :new
    end
  end

  def edit
  end

  def update
    if @call_route.update_attributes(params[:call_route])
      redirect_to @call_route, :notice  => t('call_routes.controller.successfuly_updated')
    else
      render :edit
    end
  end

  def destroy
    @call_route.destroy
    redirect_to call_routes_url, :notice => t('call_routes.controller.successfuly_destroyed')
  end

  private
  def spread_breadcrumbs
    add_breadcrumb t("call_routes.index.page_title"), call_routes_path
    if @call_route && !@call_route.new_record?
      add_breadcrumb @call_route, call_route_path(@call_route)
    end
  end

end