Sha256: b1fefe31f89ea28838b6211eabde89710f1c77654f749c476f9becb935302016
Contents?: true
Size: 344 Bytes
Versions: 19
Compression:
Stored size: 344 Bytes
Contents
class EventExportFilePolicy < ApplicationPolicy def index? user.try(:has_role?, 'Librarian') end def show? user.try(:has_role?, 'Librarian') end def create? user.try(:has_role?, 'Librarian') end def update? user.try(:has_role?, 'Librarian') end def destroy? user.try(:has_role?, 'Librarian') end end
Version data entries
19 entries across 19 versions & 1 rubygems