remove basic

This commit is contained in:
Peter Maquiran
2024-11-06 09:13:36 +01:00
parent ecb2f6c08e
commit 0889e82405
15 changed files with 138 additions and 113 deletions
@@ -9,9 +9,7 @@ import { AESEncrypt } from 'src/app/services/aesencrypt.service';
const UserLoginInputSchema = z.object({
username: z.string(),
password: z.string(),
domainName: z.string(),
BasicAuthKey: z.string()
password: z.string()
})
export type UserLoginInput = z.infer<typeof UserLoginInputSchema>