diff --git a/backend/ee-repo-ref.txt b/backend/ee-repo-ref.txt index be1e897bcd..573a5f20a9 100644 --- a/backend/ee-repo-ref.txt +++ b/backend/ee-repo-ref.txt @@ -1 +1 @@ -32039f675060b5996951708368bdefe14278d5cd \ No newline at end of file +4e43a2569abd9b80c8fdf98b75aeca7ba52d2caa diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index d1b0a39de5..8055b2654b 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -377,6 +377,9 @@ paths: type: string company: type: string + skip_email: + type: boolean + description: Skip sending email notifications to the user required: - email - password diff --git a/backend/windmill-api/src/users.rs b/backend/windmill-api/src/users.rs index 1f8529fe6a..5bc7ce9c4d 100644 --- a/backend/windmill-api/src/users.rs +++ b/backend/windmill-api/src/users.rs @@ -334,6 +334,7 @@ pub struct NewUser { pub super_admin: bool, pub name: Option, pub company: Option, + pub skip_email: Option, } #[derive(Deserialize)]