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

encrypted_smtp_command.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51a476b143d1ed9723daaed72920afa06f91c915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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