mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-01 23:27:14 +00:00
fix(ci): eslint-prettier fix BackendClient.ts single-param formatting
This commit is contained in:
@@ -394,9 +394,7 @@ export class BackendClient extends BaseHttpClient {
|
|||||||
return this.delete(`/api/v1/platform/bots/${uuid}`);
|
return this.delete(`/api/v1/platform/bots/${uuid}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
public getBotAdmins(
|
public getBotAdmins(botId: string): Promise<{
|
||||||
botId: string,
|
|
||||||
): Promise<{
|
|
||||||
admins: Array<{ id: number; launcher_type: string; launcher_id: string }>;
|
admins: Array<{ id: number; launcher_type: string; launcher_id: string }>;
|
||||||
}> {
|
}> {
|
||||||
return this.get(`/api/v1/platform/bots/${botId}/admins`);
|
return this.get(`/api/v1/platform/bots/${botId}/admins`);
|
||||||
|
|||||||
Reference in New Issue
Block a user