This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-06-21 17:07:30 +02:00
|
|
|
Fabricator(:login_activity) do
|
|
|
|
user
|
2022-06-21 15:16:22 +02:00
|
|
|
authentication_method 'password'
|
|
|
|
success true
|
|
|
|
failure_reason nil
|
|
|
|
ip { Faker::Internet.ip_v4_address }
|
|
|
|
user_agent { Faker::Internet.user_agent }
|
2021-06-21 17:07:30 +02:00
|
|
|
end
|