mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 11:11:13 +08:00
Fixes some minor issues with users deleting their own posts.
This commit is contained in:
@ -1,6 +1,12 @@
|
||||
class CurrentUserSerializer < BasicUserSerializer
|
||||
|
||||
attributes :name, :unread_notifications, :unread_private_messages, :admin, :notification_channel_position, :site_flagged_posts_count
|
||||
attributes :name,
|
||||
:unread_notifications,
|
||||
:unread_private_messages,
|
||||
:admin?,
|
||||
:notification_channel_position,
|
||||
:site_flagged_posts_count,
|
||||
:moderator?
|
||||
|
||||
# we probably want to move this into site, but that json is cached so hanging it off current user seems okish
|
||||
|
||||
@ -8,6 +14,10 @@ class CurrentUserSerializer < BasicUserSerializer
|
||||
object.admin
|
||||
end
|
||||
|
||||
def moderator?
|
||||
object.has_trust_level?(:moderator)
|
||||
end
|
||||
|
||||
def site_flagged_posts_count
|
||||
PostAction.flagged_posts_count
|
||||
end
|
||||
|
Reference in New Issue
Block a user