diff --git a/app/furniture/tobias.rb b/app/furniture/tobias.rb index 3cc29c010..f81576e89 100644 --- a/app/furniture/tobias.rb +++ b/app/furniture/tobias.rb @@ -4,7 +4,7 @@ class Tobias < Furniture location(parent: :room) end -# TOBIAS is hard to pluralize... Rails presumed TOBIAS was plural, +# TOBIAS is hard to pluralize... Rails presumed TOBIAS was plural... # So this tells Rails that TOBIAS is the singular form, and that TOBIASes # is the plural. ActiveSupport::Inflector.inflections(:en) do |inflect| diff --git a/app/furniture/tobias/trusts/show.html.erb b/app/furniture/tobias/trusts/show.html.erb new file mode 100644 index 000000000..e69de29bb diff --git a/app/furniture/tobias/trusts_controller.rb b/app/furniture/tobias/trusts_controller.rb new file mode 100644 index 000000000..1125f8be1 --- /dev/null +++ b/app/furniture/tobias/trusts_controller.rb @@ -0,0 +1,8 @@ +class Tobias + class TrustsController < FurnitureController + + def show + end + + end +end