refactor: reorganize import statements and improve code formatting across multiple files

This commit is contained in:
Abhimanyu Saharan
2026-02-13 16:22:00 +05:30
parent ebb9c659d2
commit 9a5964a31c
9 changed files with 16 additions and 13 deletions

View File

@@ -24,6 +24,7 @@ export interface BoardRead {
require_approval_for_done?: boolean;
require_review_before_done?: boolean;
block_status_changes_with_pending_approval?: boolean;
only_lead_can_change_status?: boolean;
id: string;
organization_id: string;
created_at: string;

View File

@@ -24,4 +24,5 @@ export interface BoardUpdate {
require_approval_for_done?: boolean | null;
require_review_before_done?: boolean | null;
block_status_changes_with_pending_approval?: boolean | null;
only_lead_can_change_status?: boolean | null;
}