/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/api/src/app/environment-variables/usecases/get-environment-variable-usage/get-environment-variable-usage.command.ts
8 строк
281 B
George Djabarov
refactor(api-service): update environment variable endpoints to use variable keys instead of ids fixes NV-7334 (#10602)
09 апр 2026, 17:30
Не верифицирован
09 апр 2026, 17:30
8369003
Код
Авторство
О чём код?
import { OrganizationLevelWithUserCommand } from '@novu/application-generic'; import { IsNotEmpty, IsString } from 'class-validator'; export class GetEnvironmentVariableUsageCommand extends OrganizationLevelWithUserCommand { @IsString() @IsNotEmpty() variableKey: string; }