export function set_source_attribute(source_uuid, attribute, value, reload) {
    return fetch_server_api("post", `source/${source_uuid}/attribute/${attribute}`, {
        [attribute]: value,
    }).then(reload)
}