Sha256: 8eaba0eb071bfdb7e8f1ae5da24a106e783c7fc87e991f98166163b051e30d53
Contents?: true
Size: 448 Bytes
Versions: 39
Compression:
Stored size: 448 Bytes
Contents
class AgentMergeListPolicy < 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?, 'Librarian') end def edit? 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