From 35d855d7c0d174a77fb5edd2978c2381fad83520 Mon Sep 17 00:00:00 2001 From: Peter Kozak Date: Sun, 13 Jan 2013 16:34:12 +0000 Subject: gateway controller --- app/controllers/gateways_controller.rb | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 app/controllers/gateways_controller.rb (limited to 'app/controllers/gateways_controller.rb') diff --git a/app/controllers/gateways_controller.rb b/app/controllers/gateways_controller.rb new file mode 100644 index 0000000..6173ca3 --- /dev/null +++ b/app/controllers/gateways_controller.rb @@ -0,0 +1,41 @@ +class GatewaysController < ApplicationController + def index + @gateways = Gateway.all + end + + def show + @gateway = Gateway.find(params[:id]) + end + + def new + @gateway = Gateway.new + end + + def create + @gateway = Gateway.new(params[:gateway]) + if @gateway.save + redirect_to @gateway, :notice => t('gateways.controller.successfuly_created') + else + render :new + end + end + + def edit + @gateway = Gateway.find(params[:id]) + end + + def update + @gateway = Gateway.find(params[:id]) + if @gateway.update_attributes(params[:gateway]) + redirect_to @gateway, :notice => t('gateways.controller.successfuly_updated') + else + render :edit + end + end + + def destroy + @gateway = Gateway.find(params[:id]) + @gateway.destroy + redirect_to gateways_url, :notice => t('gateways.controller.successfuly_destroyed') + end +end -- cgit v1.2.3 From fb18fd9bae2d24bef4652b40a4b0d206b77ebb4f Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Sun, 20 Jan 2013 21:09:10 +0100 Subject: Added breadcrumbs. --- app/controllers/gateways_controller.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'app/controllers/gateways_controller.rb') 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 -- cgit v1.2.3