debian-mirror-gitlab/spec/factories/service_desk/custom_email_credential.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
311 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :service_desk_custom_email_credential, class: '::ServiceDesk::CustomEmailCredential' do
project
smtp_address { "smtp.example.com" }
smtp_username { "text@example.com" }
smtp_port { 587 }
smtp_password { "supersecret" }
end
end