summaryrefslogtreecommitdiff
path: root/lib/gitlab/encrypted_incoming_email_command.rb
blob: 05fc7cac000b97eb88c9e86dc382149c29086a7d (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 EncryptedIncomingEmailCommand < EncryptedCommandBase
    DISPLAY_NAME = "INCOMING_EMAIL"
    EDIT_COMMAND_NAME = "gitlab:incoming_email:secret:edit"

    class << self
      def encrypted_secrets
        Gitlab::Email::IncomingEmail.encrypted_secrets
      end

      def encrypted_file_template
        <<~YAML
          # password: '123'
          # user: 'gitlab-incoming@gmail.com'
        YAML
      end
    end
  end
end
# rubocop:enable Rails/Output