Sha256: 1004273743219cd6ca2ac8c2792d4367de55c094b7b5122f5a76f92d032bc86b
Contents?: true
Size: 454 Bytes
Versions: 39
Compression:
Stored size: 454 Bytes
Contents
class SeriesStatementMergePolicy < 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