mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-05 13:05:48 +01:00
10 lines
285 B
TypeScript
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);
|
||
|
|
}
|