libertarian-party/partynest

View on GitHub
app/policies/federal_subject_policy.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class FederalSubjectPolicy < ApplicationPolicy
  def index?
    true
  end

  def show?
    true
  end

  class Scope < Scope
    def resolve
      scope.all
    end
  end
end