mirror of
https://github.com/discourse/discourse.git
synced 2026-03-05 15:27:34 +08:00
9 lines
154 B
Ruby
9 lines
154 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:user_status) do
|
|
user
|
|
set_at { Time.zone.now }
|
|
|
|
description { "off to dentists" }
|
|
emoji { "tooth" }
|
|
end
|