about summary refs log tree commit diff
path: root/app/policies/relay_policy.rb
blob: bd75e21977a75b04c2c7e522714b1f4b82fb4d9f (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class RelayPolicy < ApplicationPolicy
  def update?
    admin?
  end
end