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') 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