Sha256: 2cf93624f65b1fb7e3aa9440e98fc798fc197787bc85d78d34aea9fb76be4888
Contents?: true
Size: 458 Bytes
Versions: 39
Compression:
Stored size: 458 Bytes
Contents
class SeriesStatementMergeListPolicy < 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