Sha256: 059599ce8872f50572bce3af020cc3212e808fda2b3e543dc7cf892a7ce37ceb
Contents?: true
Size: 302 Bytes
Versions: 39
Compression:
Stored size: 302 Bytes
Contents
class ProducePolicy < ApplicationPolicy def index? true end def show? true end def create? true if user.try(:has_role?, 'Librarian') end def update? true if user.try(:has_role?, 'Librarian') end def destroy? true if user.try(:has_role?, 'Librarian') end end
Version data entries
39 entries across 38 versions & 2 rubygems