This commit is contained in:
2026-03-12 03:56:24 +00:00
parent 6d2413a25f
commit f95770dec6
120 changed files with 573 additions and 50 deletions
+2 -1
View File
@@ -6,7 +6,7 @@ import { ChildProcess } from "child_process";
import { NSQLITE_TURBOCI_ADMIN_USERS } from "../db/types";
export type User = DATASQUIREL_LoggedInUser & {
super_admin?: 0 | 1;
super_admin?: boolean;
};
export const CloudProviders = [
@@ -231,6 +231,7 @@ export type TurboCISignupFormObject = {
password?: string;
confirmed_password?: string;
username?: string;
image?: string;
};
export type TurboCIAdminAppContextType = ReturnType<typeof useAppInit>;