Skip to content

Commit

Permalink
feat: Add create_company field to AppCreateUserParams
Browse files Browse the repository at this point in the history
  • Loading branch information
jerlyrosa committed Dec 5, 2023
1 parent 144a527 commit ed6aaad
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/types/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export interface AppUserInterface {
displayname: string;
firstname: string;
lastname: string;
default_company: number;
default_company_branch: number;
sex: string;
description: string | null;
user_active: boolean;
Expand Down Expand Up @@ -95,6 +97,7 @@ export interface AppCreateUserParams {
role_ids?: (string | number)[];
password?: string;
custom_fields: CustomFieldInput[];
create_company?: boolean
}

export interface CreatedAppCreateUser {
Expand Down

0 comments on commit ed6aaad

Please sign in to comment.