mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
1a1bc26ecf
* ⚡ Add role parameter to user:update * ✏️ Fix typo issue
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
export interface IUser {
|
|
client_gravatar?: boolean;
|
|
include_custom_profile_fields?: boolean;
|
|
full_name?: string;
|
|
is_admin?: boolean;
|
|
is_guest?: boolean;
|
|
profile_data?: [{}];
|
|
email?: string;
|
|
password?: string;
|
|
short_name?: string;
|
|
role?: number;
|
|
}
|