mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Delegate :username rather than using a class method.
This is just a little cleaner?
This commit is contained in:
parent
88d9f3a786
commit
108e7aec9f
1 changed files with 3 additions and 5 deletions
|
@ -51,7 +51,9 @@ class Post < ActiveRecord::Base
|
|||
scope :public_posts, -> { joins(:topic).where('topics.archetype <> ?', Archetype.private_message) }
|
||||
scope :private_posts, -> { joins(:topic).where('topics.archetype = ?', Archetype.private_message) }
|
||||
scope :with_topic_subtype, ->(subtype) { joins(:topic).where('topics.subtype = ?', subtype) }
|
||||
|
||||
|
||||
delegate :username, to: :user
|
||||
|
||||
def self.hidden_reasons
|
||||
@hidden_reasons ||= Enum.new(:flag_threshold_reached, :flag_threshold_reached_again, :new_user_spam_threshold_reached)
|
||||
end
|
||||
|
@ -206,10 +208,6 @@ class Post < ActiveRecord::Base
|
|||
cooked
|
||||
end
|
||||
|
||||
def username
|
||||
user.username
|
||||
end
|
||||
|
||||
def external_id
|
||||
"#{topic_id}/#{post_number}"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue