Files
Homarr/tools/api.ts
Thomas "ajnart" Camlong 863262b1e5 Added a simple API file in tools folder
Will probably use NextJS api instead
2022-04-30 21:35:14 +02:00

10 lines
285 B
TypeScript

import { serviceItem } from '../components/AppShelf/AppShelf.d';
export function pingQbittorrent(service: serviceItem): any {
console.log("Getting service.cookie for service: ", service);
if (!service.cookie)
service.cookie = "Test";
else
console.log(service.cookie);
}