about summary refs log tree commit diff
path: root/app/policies/settings_policy.rb
blob: 2dcb79f51f2fd13585fdcb7fb1512564be92d87b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class SettingsPolicy < ApplicationPolicy
  def update?
    admin?
  end

  def show?
    admin?
  end
end