Sha256: ff935709b0f67fb7eef2b3ec4c9d04cfe0dfaf43c4ee124ee798d678f8bc6800
Contents?: true
Size: 368 Bytes
Versions: 8
Compression:
Stored size: 368 Bytes
Contents
class InventoryPolicy < ApplicationPolicy def index? user.try(:has_role?, 'Librarian') end def show? user.try(:has_role?, 'Librarian') end def create? user.try(:has_role?, 'Applicationistrator') end def update? user.try(:has_role?, 'Applicationistrator') end def destroy? user.try(:has_role?, 'Applicationistrator') end end
Version data entries
8 entries across 8 versions & 1 rubygems