diff options
author | spag <spag@golwen.net> | 2013-01-27 10:17:21 +0100 |
---|---|---|
committer | spag <spag@golwen.net> | 2013-01-27 10:17:21 +0100 |
commit | 45af07cb093eb0202967cf0d0fc058ca58f0b782 (patch) | |
tree | 703c3e8ec3dbe3d5e3dcefe8c7eda817e89f19ff /app/controllers/gateways_controller.rb | |
parent | e5fa1fc32609426693b43a4e8b6208867371d30e (diff) |
added gateway technology
Diffstat (limited to 'app/controllers/gateways_controller.rb')
-rw-r--r-- | app/controllers/gateways_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/gateways_controller.rb b/app/controllers/gateways_controller.rb index 5741195..d3362e0 100644 --- a/app/controllers/gateways_controller.rb +++ b/app/controllers/gateways_controller.rb @@ -13,6 +13,7 @@ class GatewaysController < ApplicationController def new @gateway = Gateway.new + @technologies = Gateway::TECHNOLOGIES spread_breadcrumbs end @@ -28,6 +29,7 @@ class GatewaysController < ApplicationController def edit @gateway = Gateway.find(params[:id]) + @technologies = Gateway::TECHNOLOGIES spread_breadcrumbs end |