]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user.rb
Make the storage service to use for avatars configurable
[rails.git] / app / models / user.rb
index 8b8f31676b6e37870dfb9542ec8bad4229805b26..023604801cbf49183279acd55449a587e54c1e50 100644 (file)
@@ -87,7 +87,7 @@ class User < ApplicationRecord
   scope :active, -> { where(:status => %w[active confirmed]) }
   scope :identifiable, -> { where(:data_public => true) }
 
-  has_one_attached :avatar
+  has_one_attached :avatar, :service => Settings.avatar_storage
 
   validates :display_name, :presence => true, :length => 3..255,
                            :exclusion => %w[new terms save confirm confirm-email go_public reset-password forgot-password suspended]