Sha256: 4fa7d45fb442d208d8c9d5fa7b02f890e6de527b91635bda28af8d0cf657e2f7
Contents?: true
Size: 375 Bytes
Versions: 39
Compression:
Stored size: 375 Bytes
Contents
class DonatePolicy < 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