relay_policy.rb 127 B

1234567
  1. # frozen_string_literal: true
  2. class RelayPolicy < ApplicationPolicy
  3. def update?
  4. role.can?(:manage_federation)
  5. end
  6. end