export function set_subject_attribute(subject_uuid, attribute, value, reload) {
    return fetch_server_api("post", `subject/${subject_uuid}/attribute/${attribute}`, {
        [attribute]: value,
    }).then(reload)
}