Skip to content

Commit 584295e

Browse files
ldanilekConvex, Inc.
authored andcommitted
Display HTTP Actions URL in dashboard (#25611)
![Screenshot 2024-05-13 at 11 49 59 AM](https://github.com/get-convex/convex/assets/4319355/75b5995f-4392-450c-8fcb-66c63853d3dc) ![Screenshot 2024-05-13 at 11 49 00 AM](https://github.com/get-convex/convex/assets/4319355/9f60f48a-3efa-4ca3-b493-16baab7e3d07) ![Screenshot 2024-05-13 at 11 48 42 AM](https://github.com/get-convex/convex/assets/4319355/e057253c-18c0-4847-9e6a-183fb03c76aa) GitOrigin-RevId: 506bff2c9f0b88ac61ffdfdd539b48740faa5305
1 parent 0f05b97 commit 584295e

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

npm-packages/system-udfs/convex/_generated/api.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import type * as _system_cli_tables from "../_system/cli/tables.js";
2323
import type * as _system_frontend_addDocument from "../_system/frontend/addDocument.js";
2424
import type * as _system_frontend_clearTablePage from "../_system/frontend/clearTablePage.js";
2525
import type * as _system_frontend_common from "../_system/frontend/common.js";
26+
import type * as _system_frontend_convexSiteUrl from "../_system/frontend/convexSiteUrl.js";
2627
import type * as _system_frontend_createTable from "../_system/frontend/createTable.js";
2728
import type * as _system_frontend_deleteDocuments from "../_system/frontend/deleteDocuments.js";
2829
import type * as _system_frontend_deploymentState from "../_system/frontend/deploymentState.js";
@@ -73,6 +74,7 @@ declare const fullApi: ApiFromModules<{
7374
"_system/frontend/addDocument": typeof _system_frontend_addDocument;
7475
"_system/frontend/clearTablePage": typeof _system_frontend_clearTablePage;
7576
"_system/frontend/common": typeof _system_frontend_common;
77+
"_system/frontend/convexSiteUrl": typeof _system_frontend_convexSiteUrl;
7678
"_system/frontend/createTable": typeof _system_frontend_createTable;
7779
"_system/frontend/deleteDocuments": typeof _system_frontend_deleteDocuments;
7880
"_system/frontend/deploymentState": typeof _system_frontend_deploymentState;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { queryPrivateSystem } from "../secretSystemTables";
2+
3+
declare const process: { env: { CONVEX_SITE_URL: string } };
4+
5+
export default queryPrivateSystem({
6+
args: {},
7+
handler: async function () {
8+
return process.env.CONVEX_SITE_URL;
9+
},
10+
});

0 commit comments

Comments
 (0)