Sha256: 3bc2e8e7e9a252412938b668a50231cc0408e660a1c52333bb1513469ec58a77
Contents?: true
Size: 312 Bytes
Versions: 39
Compression:
Stored size: 312 Bytes
Contents
class AgentRelationshipPolicy < 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