Is there a way to create predicate with parameters? For example: ```python #rules.py import rules @rules.predicate def role_is(user, role_id): return user.role.id == role_id rules.add_perm('reports.view_report_abc', role_is(12)) rules.add_perm('reports.view_report_xyz', role_is(13)) ```