mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
45 lines
954 B
Ruby
45 lines
954 B
Ruby
# frozen_string_literal: true
|
|
|
|
module UserPrimaryGroupMixin
|
|
|
|
def self.included(klass)
|
|
klass.attributes :primary_group_name,
|
|
:primary_group_flair_url,
|
|
:primary_group_flair_bg_color,
|
|
:primary_group_flair_color
|
|
end
|
|
|
|
def primary_group_name
|
|
object&.primary_group&.name
|
|
end
|
|
|
|
def include_primary_group_name?
|
|
object&.primary_group.present?
|
|
end
|
|
|
|
def primary_group_flair_url
|
|
object&.primary_group&.flair_url
|
|
end
|
|
|
|
def include_primary_group_flair_url?
|
|
object&.primary_group&.flair_url.present?
|
|
end
|
|
|
|
def primary_group_flair_bg_color
|
|
object&.primary_group&.flair_bg_color
|
|
end
|
|
|
|
def include_primary_group_flair_bg_color?
|
|
object&.primary_group&.flair_bg_color.present?
|
|
end
|
|
|
|
def primary_group_flair_color
|
|
object&.primary_group&.flair_color
|
|
end
|
|
|
|
def include_primary_group_flair_color?
|
|
object&.primary_group&.flair_color.present?
|
|
end
|
|
|
|
end
|