diff options
| author | Alban Peignier | 2017-12-14 11:08:28 +0100 |
|---|---|---|
| committer | Alban Peignier | 2018-01-05 10:22:59 +0100 |
| commit | 63c8ca8680c9d77032abde84c7a5d969545d675a (patch) | |
| tree | 5ef74bc6ef6adcaf022d9431fd0e780abee80ab1 /app | |
| parent | 28d3edbe08b2e8ff55b1f586b0652086f3beb18c (diff) | |
| download | chouette-core-63c8ca8680c9d77032abde84c7a5d969545d675a.tar.bz2 | |
Create WorkbenchOutputsController. Refs #5299
Diffstat (limited to 'app')
| -rw-r--r-- | app/controllers/workbench_outputs_controller.rb | 8 | ||||
| -rw-r--r-- | app/views/workbench_outputs/show.html.slim | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/app/controllers/workbench_outputs_controller.rb b/app/controllers/workbench_outputs_controller.rb new file mode 100644 index 000000000..b7f9f27cf --- /dev/null +++ b/app/controllers/workbench_outputs_controller.rb @@ -0,0 +1,8 @@ +class WorkbenchOutputsController < ChouetteController + respond_to :html, only: [:show] + defaults resource_class: Workbench + + def show + @workbench = current_organisation.workbenches.find params[:workbench_id] + end +end diff --git a/app/views/workbench_outputs/show.html.slim b/app/views/workbench_outputs/show.html.slim new file mode 100644 index 000000000..ad42e476d --- /dev/null +++ b/app/views/workbench_outputs/show.html.slim @@ -0,0 +1,5 @@ +- breadcrumb :workbench_output, @workbench +- page_header_content_for @workbench + +.page_content + .container-fluid |
