23 lines
629 B
Ruby
23 lines
629 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:external_upload_stub) do
|
|
created_by { Fabricate(:user) }
|
|
original_filename "test.txt"
|
|
key { Discourse.store.temporary_upload_path("test.txt") }
|
|
upload_type "card_background"
|
|
filesize 1024
|
|
status 1
|
|
end
|
|
|
|
Fabricator(:image_external_upload_stub, from: :external_upload_stub) do
|
|
original_filename "logo.png"
|
|
filesize 1024
|
|
key { Discourse.store.temporary_upload_path("logo.png") }
|
|
end
|
|
|
|
Fabricator(:attachment_external_upload_stub, from: :external_upload_stub) do
|
|
original_filename "file.pdf"
|
|
filesize 1024
|
|
key { Discourse.store.temporary_upload_path("file.pdf") }
|
|
end
|