mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 21:13:39 +01:00

* Add Kopia widget * Add Kopia widget * Modify Kopia widget blocks * Kopia next run / last run --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
14 lines
247 B
JavaScript
Executable File
14 lines
247 B
JavaScript
Executable File
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/{endpoint}",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
status: {
|
|
endpoint: "api/v1/sources",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget; |