"""Logic layer for rejection notes.""" from product_workflow.models import rejection_notes def get_rejection_notes(release_approval_id): """Fetch all of the rejection notes for the given id.""" return rejection_notes.get_rejection_notes(release_approval_id) def update_rejection_notes(rejections): """Update the properties specified for the given rejection notes.""" return rejection_notes.update_rejection_notes(rejections)