This commit is contained in:
SepehrYahyaee
2026-04-26 09:31:50 +03:30
parent 6c2d178686
commit 4f8cb43883
5 changed files with 37 additions and 2 deletions

View File

@@ -42,6 +42,10 @@ export class Workflow {
@Prop({ type: Date })
lockedAt?: Date;
/** Lock expiry used by UI countdown (typically lockedAt + 15m). */
@Prop({ type: Date })
expiredAt?: Date;
@Prop({ type: ActorLockSchema })
lockedBy?: ActorLock;
}