mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
9 lines
182 B
Ruby
9 lines
182 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:readonly_user_api_key, from: :user_api_key) do
|
|
user
|
|
scopes ['read']
|
|
client_id { SecureRandom.hex }
|
|
application_name 'some app'
|
|
end
|