about summary refs log tree commit diff
path: root/app/controllers/domain_policy_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/domain_policy_controller.rb')
-rw-r--r--app/controllers/domain_policy_controller.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/controllers/domain_policy_controller.rb b/app/controllers/domain_policy_controller.rb
new file mode 100644
index 000000000..28e676f5e
--- /dev/null
+++ b/app/controllers/domain_policy_controller.rb
@@ -0,0 +1,30 @@
+# frozen_string_literal: true
+
+class DomainPolicyController < ApplicationController
+  before_action :authenticate_user!
+
+  before_action :set_pack
+  layout 'public'
+
+  before_action :set_instance_presenter, only: [:show]
+
+  def show
+    @hide_navbar = true
+    @domain_policies = DomainBlock.all
+  end
+
+  private
+
+  def set_pack
+    use_pack 'common'
+  end
+
+  def set_instance_presenter
+    @instance_presenter = InstancePresenter.new
+  end
+
+  def authenticate_user!
+    return if user_signed_in?
+    not_found
+  end
+end