Sha256: b891fa7ab344e4ae25846215950d916f2eac4c52be137411f34ec81adce7f644
Contents?: true
Size: 382 Bytes
Versions: 39
Compression:
Stored size: 382 Bytes
Contents
class ImportRequestPolicy < 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 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