feat: add API modules for digest scheduling, org admin portal, and thread views

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-17 15:40:32 +05:30
parent 47f345c4bf
commit 435b0e7806
14 changed files with 605 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { IsBoolean, IsInt, IsOptional, IsString, Max, Min } from 'class-validator';
export class UpdateDigestConfigDto {
@IsString()
targetGroupJid: string;
@IsString()
targetAccountId: string;
@IsInt()
@Min(0)
@Max(23)
scheduleHour: number;
@IsInt()
@Min(0)
@Max(59)
scheduleMinute: number;
@IsBoolean()
@IsOptional()
isActive?: boolean;
}