mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:38:01 +08:00
10 lines
154 B
Ruby
10 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
|