feat: add createdAt to Connector and Watchlist

This commit is contained in:
Maël Gangloff
2024-08-04 17:16:00 +02:00
parent 7cf2375952
commit a864696df7
5 changed files with 57 additions and 53 deletions

View File

@@ -13,7 +13,12 @@ export type Watchlist = {
token: string,
domains: { ldhName: string }[],
triggers?: { event: EventAction, action: string }[],
connector?: string
connector?: {
id: string
provider: string
createdAt: string
}
createdAt: string
}
export default function WatchlistPage() {