mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
10 lines
309 B
Ruby
10 lines
309 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :notification do
|
|
title '<i>Admin</i> was added as Owner to project ' \
|
|
'<strong>Demo project - qPCR</strong> by <i>User</i>.'
|
|
message 'Project: <a href=\"/projects/3\"> Demo project - qPCR</a>'
|
|
type_of 'assignment'
|
|
end
|
|
end
|