aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/users/login.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/extra-utils/users/login.ts')
-rw-r--r--shared/extra-utils/users/login.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/extra-utils/users/login.ts b/shared/extra-utils/users/login.ts
index 39e1a2747..c14367542 100644
--- a/shared/extra-utils/users/login.ts
+++ b/shared/extra-utils/users/login.ts
@@ -4,9 +4,9 @@ import { ServerInfo } from '../server/servers'
4import { getClient } from '../server/clients' 4import { getClient } from '../server/clients'
5import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' 5import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
6 6
7type Client = { id: string, secret: string } 7type Client = { id?: string, secret?: string }
8type User = { username: string, password: string } 8type User = { username: string, password: string }
9type Server = { url: string, client: Client, user: User } 9type Server = { url?: string, client?: Client, user?: User }
10 10
11function login (url: string, client: Client, user: User, expectedStatus = HttpStatusCode.OK_200) { 11function login (url: string, client: Client, user: User, expectedStatus = HttpStatusCode.OK_200) {
12 const path = '/api/v1/users/token' 12 const path = '/api/v1/users/token'