feat: add app ping url (#2380)

Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
Manuel
2025-02-21 22:47:30 +01:00
committed by GitHub
parent 9d54e938c8
commit fb467ac165
18 changed files with 3679 additions and 4 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE `app` ADD `ping_url` text;

File diff suppressed because it is too large Load Diff

View File

@@ -197,6 +197,13 @@
"when": 1739915526818,
"tag": "0027_acoustic_karma",
"breakpoints": true
},
{
"idx": 28,
"version": "5",
"when": 1740086765989,
"tag": "0028_add_app_ping_url",
"breakpoints": true
}
]
}

View File

@@ -0,0 +1 @@
ALTER TABLE `app` ADD `ping_url` text;

File diff suppressed because it is too large Load Diff

View File

@@ -197,6 +197,13 @@
"when": 1739915486467,
"tag": "0027_wooden_blizzard",
"breakpoints": true
},
{
"idx": 28,
"version": "6",
"when": 1740086746417,
"tag": "0028_add_app_ping_url",
"breakpoints": true
}
]
}

View File

@@ -376,6 +376,7 @@ export const apps = mysqlTable("app", {
description: text(),
iconUrl: text().notNull(),
href: text(),
pingUrl: text(),
});
export const integrationItems = mysqlTable(

View File

@@ -361,6 +361,7 @@ export const apps = sqliteTable("app", {
description: text(),
iconUrl: text().notNull(),
href: text(),
pingUrl: text(),
});
export const integrationItems = sqliteTable(