From 4e630a135f787509cec5bc8127e1e5006e66f258 Mon Sep 17 00:00:00 2001 From: Harry Bomrah Date: Fri, 25 Sep 2015 14:32:59 +0800 Subject: [PATCH] added frontend for this module --- app/controllers/spaces_controller.rb | 9 +++++++++ app/views/spaces/index.html.erb | 1 + 2 files changed, 10 insertions(+) create mode 100644 app/controllers/spaces_controller.rb create mode 100644 app/views/spaces/index.html.erb diff --git a/app/controllers/spaces_controller.rb b/app/controllers/spaces_controller.rb new file mode 100644 index 0000000..7ddf3a3 --- /dev/null +++ b/app/controllers/spaces_controller.rb @@ -0,0 +1,9 @@ +class SpacesController < ApplicationController + def index + { + "extra" => { + + } + } + end +end \ No newline at end of file diff --git a/app/views/spaces/index.html.erb b/app/views/spaces/index.html.erb new file mode 100644 index 0000000..648b75c --- /dev/null +++ b/app/views/spaces/index.html.erb @@ -0,0 +1 @@ +<%= render_view %> \ No newline at end of file