mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 22:14:34 +00:00
11 lines
278 B
Ruby
11 lines
278 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:login_activity) do
|
|
user
|
|
authentication_method 'password'
|
|
success true
|
|
failure_reason nil
|
|
ip { Faker::Internet.ip_v4_address }
|
|
user_agent { Faker::Internet.user_agent }
|
|
end
|