Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/encrypted_smtp_command.rb')
-rw-r--r--lib/gitlab/encrypted_smtp_command.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/gitlab/encrypted_smtp_command.rb b/lib/gitlab/encrypted_smtp_command.rb
new file mode 100644
index 00000000000..51a476b143d
--- /dev/null
+++ b/lib/gitlab/encrypted_smtp_command.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+# rubocop:disable Rails/Output
+module Gitlab
+ class EncryptedSmtpCommand < EncryptedCommandBase
+ DISPLAY_NAME = "SMTP"
+ EDIT_COMMAND_NAME = "gitlab:smtp:secret:edit"
+
+ class << self
+ def encrypted_secrets
+ Gitlab::Email::SmtpConfig.encrypted_secrets
+ end
+
+ def encrypted_file_template
+ <<~YAML
+ # password: '123'
+ # user_name: 'gitlab-inst'
+ YAML
+ end
+ end
+ end
+end
+# rubocop:enable Rails/Output