blob: 963938c643d8e665194b37fe3ebcee9de33fe496 (
plain)
| 1
2
3
4
5
6
7
8
 | FactoryGirl.define do
  factory :api_key, class: Api::V1::ApiKey do
    name  { SecureRandom.urlsafe_base64 }
    token { "#{referential_id}-#{organisation_id}-#{SecureRandom.hex}" }
    referential
    organisation
  end
end
 |