about summary refs log tree commit diff
path: root/app/controllers/domain_policy_controller.rb
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-07-30 16:35:53 -0500
committermultiple creatures <dev@multiple-creature.party>2019-07-30 16:36:24 -0500
commitccb84572d6300c0ed69a59653b98ced89582452a (patch)
tree23609bf14d544836f7ef5177f70a52719ae53592 /app/controllers/domain_policy_controller.rb
parent3f327a3ea75e0c635b88418e5b92454873815f9d (diff)
add a domain policy viewer at `/policies`
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