mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
ff367e22fb
This gives admins more control over who can upload custom profile pictures.
20 lines
500 B
Ruby
20 lines
500 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeAllowUploadedAvatars < ActiveRecord::Migration[6.1]
|
|
def up
|
|
execute <<~SQL
|
|
UPDATE site_settings
|
|
SET data_type = 7, value = (CASE WHEN value = 'f' THEN 'disabled' ELSE '0' END)
|
|
WHERE name = 'allow_uploaded_avatars'
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
execute <<~SQL
|
|
UPDATE site_settings
|
|
SET data_type = 5, value = (CASE WHEN value = 'disabled' THEN 'f' ELSE 't' END)
|
|
WHERE name = 'allow_uploaded_avatars'
|
|
SQL
|
|
end
|
|
end
|