mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 07:04:45 -04:00

This should make all usernames of new users into lowercase. Usernames are also searched in the DB as lowercase. Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { IsString } from 'class-validator';
|
|
|
|
export class LdapLoginDto {
|
|
@IsString()
|
|
username: string; // This is not of type Username, because LDAP server may use mixed case usernames
|
|
@IsString()
|
|
password: string;
|
|
}
|