Interface IOAuthAppsModify
Methods
createOAuthApp
- createOAuthApp(OAuthApp: Pick<IOAuthApp, "name" | "active" | "clientId" | "clientSecret" | "redirectUri">, appId: string): Promise<string>
-
Parameters
-
OAuthApp: Pick<IOAuthApp, "name" | "active" | "clientId" | "clientSecret" | "redirectUri">
-
appId: string
Returns Promise<string>
deleteOAuthApp
- deleteOAuthApp(id: string, appId: string): Promise<void>
-
Parameters
Returns Promise<void>
updateOAuthApp
- updateOAuthApp(OAuthApp: Pick<IOAuthApp, "name" | "active" | "clientId" | "clientSecret" | "redirectUri">, id: string, appId: string): Promise<void>
-
Parameters
-
OAuthApp: Pick<IOAuthApp, "name" | "active" | "clientId" | "clientSecret" | "redirectUri">
-
id: string
-
appId: string
Returns Promise<void>
Create an OAuthApp