summaryrefslogtreecommitdiff
path: root/app/controllers/gateways_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/gateways_controller.rb')
-rw-r--r--app/controllers/gateways_controller.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/controllers/gateways_controller.rb b/app/controllers/gateways_controller.rb
index 6173ca3..5741195 100644
--- a/app/controllers/gateways_controller.rb
+++ b/app/controllers/gateways_controller.rb
@@ -1,18 +1,24 @@
class GatewaysController < ApplicationController
+ authorize_resource :gateway
+
def index
@gateways = Gateway.all
+ spread_breadcrumbs
end
def show
@gateway = Gateway.find(params[:id])
+ spread_breadcrumbs
end
def new
@gateway = Gateway.new
+ spread_breadcrumbs
end
def create
@gateway = Gateway.new(params[:gateway])
+ spread_breadcrumbs
if @gateway.save
redirect_to @gateway, :notice => t('gateways.controller.successfuly_created')
else
@@ -22,10 +28,12 @@ class GatewaysController < ApplicationController
def edit
@gateway = Gateway.find(params[:id])
+ spread_breadcrumbs
end
def update
@gateway = Gateway.find(params[:id])
+ spread_breadcrumbs
if @gateway.update_attributes(params[:gateway])
redirect_to @gateway, :notice => t('gateways.controller.successfuly_updated')
else
@@ -38,4 +46,12 @@ class GatewaysController < ApplicationController
@gateway.destroy
redirect_to gateways_url, :notice => t('gateways.controller.successfuly_destroyed')
end
+
+ private
+ def spread_breadcrumbs
+ add_breadcrumb t("gateways.index.page_title"), gateways_path
+ if @gateway && !@gateway.new_record?
+ add_breadcrumb @gateway, @gateway
+ end
+ end
end