mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 15:05:26 +08:00
12 lines
318 B
Ruby
12 lines
318 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :wopi_discovery do
|
||
|
proof_key_mod { Faker::Lorem.characters(20) }
|
||
|
proof_key_exp { Faker::Lorem.characters(20) }
|
||
|
proof_key_old_mod { Faker::Lorem.characters(20) }
|
||
|
proof_key_old_exp { Faker::Lorem.characters(20) }
|
||
|
expires { 60 }
|
||
|
end
|
||
|
end
|