libertarian-party/partynest

View on GitHub
app/policies/staff/contact_network_policy.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Staff::ContactNetworkPolicy < ApplicationPolicy
  def index?
    return false if restricted?

    account&.superuser?
  end

  class Scope < Scope
    def resolve
      return scope.none if restricted?

      return scope.all if account&.superuser?

      scope.none
    end
  end
end