2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
2016-06-02 11:05:42 +05:30
|
|
|
factory :sent_notification do
|
2017-09-10 17:25:29 +05:30
|
|
|
project
|
2018-03-17 18:26:18 +05:30
|
|
|
recipient { project.creator }
|
2021-02-22 17:27:13 +05:30
|
|
|
noteable { association(:issue, project: project) }
|
2017-08-17 22:00:37 +05:30
|
|
|
reply_key { SentNotification.reply_key }
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|