debian-mirror-gitlab/lib/gitlab/encrypted_service_desk_email_command.rb
2023-04-23 21:23:45 +05:30

23 lines
548 B
Ruby

# frozen_string_literal: true
# rubocop:disable Rails/Output
module Gitlab
class EncryptedServiceDeskEmailCommand < EncryptedCommandBase
DISPLAY_NAME = "SERVICE_DESK_EMAIL"
EDIT_COMMAND_NAME = "gitlab:service_desk_email:secret:edit"
class << self
def encrypted_secrets
Gitlab::ServiceDeskEmail.encrypted_secrets
end
def encrypted_file_template
<<~YAML
# password: '123'
# user: 'gitlab-incoming@gmail.com'
YAML
end
end
end
end
# rubocop:enable Rails/Output