def update
    post = Mentor::DiscussionPost.find_by(uuid: params[:uuid])

    return render_404(:mentor_discussion_post_not_found) if post.blank?
    return render_403(:mentor_discussion_post_not_accessible) unless post.author == current_user