Adding avatars to profile page and statuses
This commit is contained in:
@ -3,7 +3,8 @@ class Account < ActiveRecord::Base
|
||||
has_one :user, inverse_of: :account
|
||||
|
||||
# Avatar upload
|
||||
has_attached_file :avatar, styles: { large: '300x300#', medium: '96x96#', small: '48x48#' }
|
||||
attr_reader :avatar_remote_url
|
||||
has_attached_file :avatar, styles: { large: '300x300#', medium: '96x96#', small: '48x48#' }, default_url: 'avatars/missing.png'
|
||||
validates_attachment_content_type :avatar, content_type: /\Aimage\/.*\Z/
|
||||
|
||||
# Timelines
|
||||
@ -64,6 +65,11 @@ class Account < ActiveRecord::Base
|
||||
@subscription ||= OStatus2::Subscription.new(self.remote_url, secret: self.secret, token: self.verify_token, webhook: webhook_url, hub: self.hub_url)
|
||||
end
|
||||
|
||||
def avatar_remote_url=(url)
|
||||
self.avatar = URI.parse(url)
|
||||
@avatar_remote_url = url
|
||||
end
|
||||
|
||||
before_create do
|
||||
if local?
|
||||
keypair = OpenSSL::PKey::RSA.new(Rails.env.test? ? 48 : 2048)
|
||||
|
Reference in New Issue
Block a user