mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:31:56 +08:00
bb0c2813ac
FIX: keep the "uploading..." indicator until the server replies via the MessageBus FIX: text was disapearing when uploading an avatar PERF: always use a region for S3 (defaults to 'us-east-1') FEATURE: ApplyCDN middleware when using S3 FIX: use the same pattern to store files on S3 and locally PERF: keep a local cache of uploads when generating thumbnails FEATURE: migrate_to_s3 rake task
27 lines
527 B
Ruby
27 lines
527 B
Ruby
require_dependency 'enum_site_setting'
|
|
|
|
class S3RegionSiteSetting < EnumSiteSetting
|
|
def self.valid_value?(val)
|
|
valid_values.include? val
|
|
end
|
|
|
|
def self.values
|
|
@values ||= valid_values.sort.map { |x| { name: x, value: x } }
|
|
end
|
|
|
|
def self.valid_values
|
|
[ 'us-east-1',
|
|
'us-west-1',
|
|
'us-west-2',
|
|
'us-gov-west-1',
|
|
'eu-west-1',
|
|
'eu-central-1',
|
|
'ap-southeast-1',
|
|
'ap-southeast-2',
|
|
'ap-northeast-1',
|
|
'sa-east-1']
|
|
end
|
|
|
|
private_class_method :valid_values
|
|
end
|