about summary refs log tree commit diff
path: root/app/controllers/manifests_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/manifests_controller.rb')
-rw-r--r--app/controllers/manifests_controller.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/controllers/manifests_controller.rb b/app/controllers/manifests_controller.rb
new file mode 100644
index 000000000..832e1eb6f
--- /dev/null
+++ b/app/controllers/manifests_controller.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+class ManifestsController < ApplicationController
+  before_action :set_instance_presenter
+
+  def show; end
+
+  def set_instance_presenter
+    @instance_presenter = InstancePresenter.new
+  end
+end