Files
gitlab-foss/lib/gitlab/encrypted_incoming_email_command.rb
2024-10-29 21:26:13 +00:00

22 lines
480 B
Ruby

# frozen_string_literal: true
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