From 3f75e1947ea401c7ff032d38518fb9d3175787f5 Mon Sep 17 00:00:00 2001 From: Zee Spencer <50284+zspencer@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:29:22 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20`Tobias`:=20Sprout=20`Tobias`=20Giz?= =?UTF-8?q?mo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - https://github.com/zinc-collective/tobias/issues/1 - https://github.com/zinc-collective/convene/issues/709 - For a https://github.com/zinc-collective/tobias/issues/9 to leverage the behavior we described, we need a way to put tobias on the web. https://github.com/zinc-collective/convene/issues/709 are the equivalent of an "App" in the Convene world. - Note: `Gizmo` and `Furniture` are equivalent. We probably should finish https://github.com/zinc-collective/convene/issues/1472 - The migration change makes sure that ahttps://github.com/zinc-collective/tobias/issues/4 is connected to https://github.com/zinc-collective/tobias/issues/1 --- app/furniture/tobias.rb | 2 +- app/furniture/tobias/trusts/show.html.erb | 0 app/furniture/tobias/trusts_controller.rb | 8 ++++++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 app/furniture/tobias/trusts/show.html.erb create mode 100644 app/furniture/tobias/trusts_controller.rb 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