mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 10:14:17 +08:00
8e905b67b2
* Add dropdown menu and icon for system notifications * Finish system notification dropdown menu and add tests
18 lines
469 B
Ruby
18 lines
469 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :user_system_notification do
|
|
user
|
|
system_notification
|
|
trait :seen do
|
|
seen_at { Faker::Time.between(3.days.ago, Date.today) }
|
|
end
|
|
trait :read do
|
|
read_at { Faker::Time.between(3.days.ago, Date.today) }
|
|
end
|
|
trait :seen_and_read do
|
|
seen_at { Faker::Time.between(3.days.ago, Date.today) }
|
|
read_at { Faker::Time.between(seen_at, Date.today) }
|
|
end
|
|
end
|
|
end
|