b4c4b48a8c
This can be done trough the API for the current user, or on the profile page.
9 lines
145 B
Ruby
9 lines
145 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :user_status do
|
|
user
|
|
emoji 'coffee'
|
|
message 'I crave coffee'
|
|
end
|
|
end
|