Sha256: 3c5400b3f4086a3c3c4dcb15ae80f5aad582b60b67d670932a0104630fa9bcad
Contents?: true
Size: 375 Bytes
Versions: 29
Compression:
Stored size: 375 Bytes
Contents
class DemandPolicy < 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
29 entries across 29 versions & 1 rubygems