Skip to content

Commit

Permalink
chore(mail-connector): password can be set with a feel expression (#4127
Browse files Browse the repository at this point in the history
)

* chore(mail-connector): password can be set with a feel expression

* chore(mail-connector): password can be set with a feel expression 2
  • Loading branch information
mathias-vandaele authored Feb 26, 2025
1 parent 937826b commit 7401e21
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
"constraints" : {
"notEmpty" : true
},
"feel" : "optional",
"group" : "authentication",
"binding" : {
"name" : "authentication.password",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
"constraints" : {
"notEmpty" : true
},
"feel" : "optional",
"group" : "authentication",
"binding" : {
"name" : "authentication.password",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/
package io.camunda.connector.email.authentication;

import io.camunda.connector.generator.dsl.Property;
import io.camunda.connector.generator.java.annotation.TemplateProperty;
import io.camunda.connector.generator.java.annotation.TemplateSubType;
import jakarta.validation.constraints.NotBlank;
Expand All @@ -24,7 +23,6 @@ public record SimpleAuthentication(
@TemplateProperty(
group = "authentication",
label = "Email password",
feel = Property.FeelMode.disabled,
tooltip =
"Enter the password associated with your email account. Keep your password secure and do not share it with others.",
id = "simpleAuthenticationPassword")
Expand Down

0 comments on commit 7401e21

Please sign in to comment.