feat: copyable invite links (#4153)

Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Akash K
2024-06-28 21:18:10 +05:30
committed by GitHub
parent 0c06f26893
commit 2917d50c6a
7 changed files with 119 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ import { InspectorsPlatformDef } from "./inspectors"
import { ServiceClassInstance } from "dioc"
import { IOPlatformDef } from "./io"
import { SpotlightPlatformDef } from "./spotlight"
import { InfraPlatformDef } from "./infra"
import { Ref } from "vue"
export type PlatformDef = {
@@ -52,6 +53,7 @@ export type PlatformDef = {
*/
workspaceSwitcherLogin?: Ref<boolean>
}
infra?: InfraPlatformDef
}
export let platform: PlatformDef

View File

@@ -0,0 +1,5 @@
import * as E from "fp-ts/Either"
export type InfraPlatformDef = {
getIsSMTPEnabled?: () => Promise<E.Either<string, boolean>>
}