mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-14 15:20:00 +00:00

Some front end clients are going to be allow-listing updates based on what the release was tested on, or by who the testing team was. Export this data from each report when requested.
19 lines
279 B
C
19 lines
279 B
C
/*
|
|
* Copyright (C) 2022 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <json-glib/json-glib.h>
|
|
|
|
#include "fwupd-report.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void
|
|
fwupd_report_to_json(FwupdReport *self, JsonBuilder *builder);
|
|
|
|
G_END_DECLS
|