diff options
| author | Edouard Maffert | 2016-05-12 17:14:18 +0200 |
|---|---|---|
| committer | Edouard Maffert | 2016-05-12 17:14:18 +0200 |
| commit | 020cf3b06409acae569c23636ee91085fbeb5699 (patch) | |
| tree | a93afd432db99174c8f10c33edb22226cca2c084 /app/controllers | |
| parent | 972bbcb308d360c5468cd629dc5cdf356d556a2e (diff) | |
| download | chouette-core-020cf3b06409acae569c23636ee91085fbeb5699.tar.bz2 | |
add offer workbench model #827
Diffstat (limited to 'app/controllers')
| -rw-r--r-- | app/controllers/offer_workbenches_controller.rb | 12 |
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 |
