Sha256: fbfa16b17a99cb01b081e962486865470be9468e847873c7e2630eb82cbc84cc
Contents?: true
Size: 408 Bytes
Versions: 11
Compression:
Stored size: 408 Bytes
Contents
class ManifestationCustomPropertyPolicy < ApplicationPolicy def index? true if user.try(:has_role?, 'Librarian') end def show? true if user.try(:has_role?, 'Librarian') end def create? true if user.try(:has_role?, 'Administrator') end def update? true if user.try(:has_role?, 'Administrator') end def destroy? true if user.try(:has_role?, 'Administrator') end end
Version data entries
11 entries across 11 versions & 1 rubygems