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/lib/templates/pundit/policy/policy.rb
2018-12-07 04:59:27 +05:00

11 lines
194 B
Ruby

<% module_namespacing do -%>
# frozen_string_literal: true
class <%= class_name %>Policy < ApplicationPolicy
class Scope < Scope
def resolve
scope.none
end
end
end
<% end -%>