FEATURE: Use the site's small logo as the system user's avatar. (#11661)

This commit is contained in:
Roman Rizzi
2021-01-08 10:40:00 -03:00
committed by GitHub
parent e63a9facc7
commit caa17386ee
2 changed files with 28 additions and 1 deletions

View File

@ -868,7 +868,11 @@ class User < ActiveRecord::Base
end
def avatar_template
self.class.avatar_template(username, uploaded_avatar_id)
if id == Discourse::SYSTEM_USER_ID && SiteSetting.logo_small
UrlHelper.absolute(SiteSetting.logo_small.url)
else
self.class.avatar_template(username, uploaded_avatar_id)
end
end
# The following count methods are somewhat slow - definitely don't use them in a loop.