mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
22 lines
494 B
Ruby
22 lines
494 B
Ruby
# frozen_string_literal: true
|
|
|
|
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::Email::ServiceDeskEmail.encrypted_secrets
|
|
end
|
|
|
|
def encrypted_file_template
|
|
<<~YAML
|
|
# password: '123'
|
|
# user: 'gitlab-incoming@gmail.com'
|
|
YAML
|
|
end
|
|
end
|
|
end
|
|
end
|