refactored key 'data' in data file

This commit is contained in:
Titouan 2025-10-03 14:19:24 +02:00
parent 5ab302ab51
commit 5c2fb5160b
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ export const FolderPrivateFields = [
export interface FolderCreated { export interface FolderCreated {
processId: string, processId: string,
process: any, // Process process: any, // Process
folderData: FolderData, data: FolderData,
} }
export function setDefaultFolderRoles(ownerId: string, stakeholdersId: string[], customersId: string[]): Record<string, RoleDefinition> { export function setDefaultFolderRoles(ownerId: string, stakeholdersId: string[], customersId: string[]): Record<string, RoleDefinition> {

View File

@ -83,7 +83,7 @@ export const RhPrivateFields = [
export interface RhCreated { export interface RhCreated {
processId: string, processId: string,
process: any, // Process process: any, // Process
rhData: RhData, data: RhData,
} }
export function setDefaultRhRoles(ownerId: string, rhs: string[], salaries: string[]): Record<string, RoleDefinition> { export function setDefaultRhRoles(ownerId: string, rhs: string[], salaries: string[]): Record<string, RoleDefinition> {