mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
e732aa8a86
Highly recommended to run: `RAILS_ENV=production bundle exec rake avatars:regenerate` to fix the avatar templates stored in the database.
50 lines
621 B
Ruby
50 lines
621 B
Ruby
module FileStore
|
|
|
|
class BaseStore
|
|
|
|
def store_upload(file, upload)
|
|
end
|
|
|
|
def store_optimized_image(file, optimized_image)
|
|
end
|
|
|
|
def store_avatar(file, avatar, size)
|
|
end
|
|
|
|
def remove_upload(upload)
|
|
end
|
|
|
|
def remove_optimized_image(optimized_image)
|
|
end
|
|
|
|
def has_been_uploaded?(url)
|
|
end
|
|
|
|
def absolute_base_url
|
|
end
|
|
|
|
def relative_base_url
|
|
end
|
|
|
|
def external?
|
|
end
|
|
|
|
def internal?
|
|
end
|
|
|
|
def path_for(upload)
|
|
end
|
|
|
|
def download(upload)
|
|
end
|
|
|
|
def avatar_template(avatar)
|
|
end
|
|
|
|
def purge_tombstone(grace_period)
|
|
end
|
|
|
|
end
|
|
|
|
end
|