discourse/spec/fabricators/admin_notice_fabricator.rb
Ted Johansson be33363f13
FEATURE: Add ability to dismiss admin notices (#28916)
his is a new feature that lets admins dismiss notices from the dashboard. This helps with self-service in cases where a notice is "stuck", while we work on provisions to prevent "sticking" in the first place.
2024-09-17 14:43:34 +08:00

8 lines
140 B
Ruby

# frozen_string_literal: true
Fabricator(:admin_notice) do
priority { "low" }
identifier { "test_notice" }
subject { "problem" }
end