diff options
author | Azul <azul@leap.se> | 2014-07-08 12:48:33 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-07-14 10:49:39 +0200 |
commit | f1a8cefb810bef263d3a96edffbec511dbe15291 (patch) | |
tree | c6cb44302dcd5484944cf9eb1444a329de8f387a /app | |
parent | 303ec07901af3798efc873cbe050aa5cb4ba7655 (diff) |
send static list of configs for now
Also added authentication steps to cucumber
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/v1/configs_controller.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/controllers/v1/configs_controller.rb b/app/controllers/v1/configs_controller.rb index a43861b..b11b0a9 100644 --- a/app/controllers/v1/configs_controller.rb +++ b/app/controllers/v1/configs_controller.rb @@ -1,8 +1,17 @@ class V1::ConfigsController < ApplicationController + CONFIGS = { + services: { + soledad: "/1/configs/soledad-service.json", + eip: "/1/configs/eip-service.json", + smtp: "/1/configs/smtp-service.json" + } + } + before_filter :require_login def index + render json: CONFIGS end def show |