Added registrar mirrored

This commit is contained in:
SepehrYahyaee
2026-06-15 15:58:31 +03:30
parent 41f81a2f76
commit a7849f915a
13 changed files with 1089 additions and 61 deletions

View File

@@ -2,6 +2,7 @@ import {
IsBooleanString,
IsEnum,
IsNumber,
IsOptional,
IsPositive,
IsString,
IsUrl,
@@ -79,10 +80,8 @@ export class EnvironmentVariables {
JWT_EXPIRY: StringValue;
// --------------------------------------------------------- //
// @IsString({ message: "HASH_PEPPER must be string" })
// @MinLength(32, {
// message: "HASH_PEPPER must be at least 32 characters",
// })
// HASH_PEPPER: string;
@IsString({ message: "HASH_PEPPER must be string" })
@IsOptional()
HASH_PEPPER?: string;
// --------------------------------------------------------- //
}