Compare commits
2 Commits
70701aa124
...
09d2039cf0
| Author | SHA1 | Date | |
|---|---|---|---|
| 09d2039cf0 | |||
| 8ef764e664 |
@ -59,11 +59,10 @@ export const envValidationSchema = Joi.object({
|
|||||||
AUTO_SYNC_LOOKBACK_DAYS: Joi.number().integer().min(1).max(365).default(7),
|
AUTO_SYNC_LOOKBACK_DAYS: Joi.number().integer().min(1).max(365).default(7),
|
||||||
AUTO_SYNC_MAX_USERS_PER_RUN: Joi.number().integer().min(1).max(500).default(25),
|
AUTO_SYNC_MAX_USERS_PER_RUN: Joi.number().integer().min(1).max(500).default(25),
|
||||||
|
|
||||||
SENTRY_DSN: Joi.when("NODE_ENV", {
|
// Strongly recommended in production for error visibility, but not
|
||||||
is: "production",
|
// required to boot: a missing Sentry DSN should mean "no error tracking
|
||||||
then: Joi.string().uri().required(),
|
// yet", not "the whole API refuses to start."
|
||||||
otherwise: Joi.string().uri().optional().allow(""),
|
SENTRY_DSN: Joi.string().uri().optional().allow(""),
|
||||||
}),
|
|
||||||
SENTRY_TRACES_SAMPLE_RATE: Joi.number().min(0).max(1).default(0),
|
SENTRY_TRACES_SAMPLE_RATE: Joi.number().min(0).max(1).default(0),
|
||||||
|
|
||||||
GOOGLE_CLIENT_ID: Joi.string().optional().allow(""),
|
GOOGLE_CLIENT_ID: Joi.string().optional().allow(""),
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { IsBoolean, IsIn, IsOptional, IsString, IsUrl, ValidateNested } from "class-validator";
|
import { IsBoolean, IsIn, IsNumber, IsOptional, IsString, IsUrl, ValidateNested } from "class-validator";
|
||||||
import { Type } from "class-transformer";
|
import { Type } from "class-transformer";
|
||||||
|
|
||||||
export class UpdateNotificationPreferencesDto {
|
export class UpdateNotificationPreferencesDto {
|
||||||
@ -30,4 +30,11 @@ export class SavePushSubscriptionDto {
|
|||||||
@ValidateNested()
|
@ValidateNested()
|
||||||
@Type(() => PushKeysDto)
|
@Type(() => PushKeysDto)
|
||||||
keys!: PushKeysDto;
|
keys!: PushKeysDto;
|
||||||
|
|
||||||
|
// Included by the browser's PushSubscription.toJSON() when the push
|
||||||
|
// service provides an expiry; not currently used server-side, but must be
|
||||||
|
// declared or the whitelist validation pipe rejects the whole request.
|
||||||
|
@IsOptional()
|
||||||
|
@IsNumber()
|
||||||
|
expirationTime?: number | null;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user