pub async fn create_page(
    conn: &mut PgConnection,
    course_id: Uuid,
    author: Uuid,
    chapter_id: Option<Uuid>,
    page_data: CmsPageUpdate,
    base_url: String,
    jwt_key: Arc<JwtKey>
) -> Result<Uuid>