mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 11:59:17 -05:00
10 lines
199 B
Ruby
10 lines
199 B
Ruby
|
Fabricator(:readonly_user_api_key, from: :user_api_key) do
|
||
|
user
|
||
|
read true
|
||
|
write false
|
||
|
push false
|
||
|
client_id { SecureRandom.hex }
|
||
|
key { SecureRandom.hex }
|
||
|
application_name 'some app'
|
||
|
end
|