aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorEdouard Maffert2016-05-12 17:14:18 +0200
committerEdouard Maffert2016-05-12 17:14:18 +0200
commit020cf3b06409acae569c23636ee91085fbeb5699 (patch)
treea93afd432db99174c8f10c33edb22226cca2c084 /app/controllers
parent972bbcb308d360c5468cd629dc5cdf356d556a2e (diff)
downloadchouette-core-020cf3b06409acae569c23636ee91085fbeb5699.tar.bz2
add offer workbench model #827
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/offer_workbenches_controller.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/controllers/offer_workbenches_controller.rb b/app/controllers/offer_workbenches_controller.rb
new file mode 100644
index 000000000..b9663184b
--- /dev/null
+++ b/app/controllers/offer_workbenches_controller.rb
@@ -0,0 +1,12 @@
+class OfferWorkbenchesController < BreadcrumbController
+
+ defaults :resource_class => OfferWorkbench
+ respond_to :html, :only => [:show]
+
+ def show
+ show! do
+ build_breadcrumb :show
+ end
+ end
+
+end