mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
9 lines
257 B
Ruby
9 lines
257 B
Ruby
|
class S3RegionSiteSetting
|
||
|
def self.valid_value?(val)
|
||
|
all_values.include? val
|
||
|
end
|
||
|
|
||
|
def self.all_values
|
||
|
@all_values ||= ['', 'us-east-1', 'us-west-1', 'us-west-2', 'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1', 'sa-east-1'].sort
|
||
|
end
|
||
|
end
|