discourse/spec/fabricators/user_api_key_fabricator.rb

10 lines
209 B
Ruby

# frozen_string_literal: true
Fabricator(:readonly_user_api_key, from: :user_api_key) do
user
scopes ['read']
client_id { SecureRandom.hex }
key { SecureRandom.hex }
application_name 'some app'
end