Merge branch 'bug/show-password-in-datasource-form' into 'release'
Show passwords in datasource forms. See merge request theappsmith/internal-tools-server!308
This commit is contained in:
commit
89d04f11e7
|
|
@ -1,6 +1,5 @@
|
||||||
package com.appsmith.external.models;
|
package com.appsmith.external.models;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
|
@ -22,7 +21,6 @@ public class AuthenticationDTO {
|
||||||
|
|
||||||
String username;
|
String username;
|
||||||
|
|
||||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
|
||||||
String password;
|
String password;
|
||||||
|
|
||||||
String databaseName;
|
String databaseName;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,10 @@
|
||||||
package com.appsmith.external.models;
|
package com.appsmith.external.models;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.*;
|
import lombok.Getter;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
|
|
@ -12,7 +15,6 @@ public class SSHPrivateKey {
|
||||||
|
|
||||||
UploadedFile keyFile;
|
UploadedFile keyFile;
|
||||||
|
|
||||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
|
||||||
String password;
|
String password;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user