about summary refs log tree commit diff
path: root/app/controllers/domain_policy_controller.rb
blob: f438eff32be8d465a2ab6df83288390dea7bb5a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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.reorder('updated_at DESC').page(params[:page])
  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