From 3975c963c5494414f7964a1be69be3f2d8791be1 Mon Sep 17 00:00:00 2001 From: DocuSeal Date: Sun, 1 Oct 2023 21:25:54 +0300 Subject: [PATCH] make SMTP username and password non required --- app/views/email_smtp_settings/index.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/email_smtp_settings/index.html.erb b/app/views/email_smtp_settings/index.html.erb index 944590b1..ab5f561f 100644 --- a/app/views/email_smtp_settings/index.html.erb +++ b/app/views/email_smtp_settings/index.html.erb @@ -18,11 +18,11 @@
<%= ff.label :username, class: 'label' %> - <%= ff.text_field :username, value: value['username'], required: true, class: 'base-input' %> + <%= ff.text_field :username, value: value['username'], class: 'base-input' %>
<%= ff.label :password, class: 'label' %> - <%= ff.password_field :password, value: value['password'], required: true, class: 'base-input' %> + <%= ff.password_field :password, value: value['password'], class: 'base-input' %>