1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/policies/federal_subject_policy.rb

18 lines
207 B
Ruby
Raw Normal View History

2019-01-31 17:38:06 -05:00
# frozen_string_literal: true
2019-06-23 11:54:41 -04:00
class FederalSubjectPolicy < ApplicationPolicy
2019-01-31 17:38:06 -05:00
def index?
true
end
def show?
true
end
class Scope < Scope
def resolve
scope.all
end
end
end