mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:35:48 +08:00
c21d3f41d0
Actually, new users will still be redirected to the top page during the first 30 seconds of their first visit.
73 lines
1.4 KiB
Ruby
73 lines
1.4 KiB
Ruby
class CurrentUserSerializer < BasicUserSerializer
|
|
|
|
attributes :name,
|
|
:unread_notifications,
|
|
:unread_private_messages,
|
|
:admin?,
|
|
:notification_channel_position,
|
|
:site_flagged_posts_count,
|
|
:moderator?,
|
|
:staff?,
|
|
:reply_count,
|
|
:topic_count,
|
|
:enable_quoting,
|
|
:external_links_in_new_tab,
|
|
:dynamic_favicon,
|
|
:trust_level,
|
|
:can_edit,
|
|
:can_invite_to_forum,
|
|
:no_password,
|
|
:can_delete_account,
|
|
:should_be_redirected_to_top,
|
|
:redirected_to_top_reason
|
|
|
|
def include_site_flagged_posts_count?
|
|
object.staff?
|
|
end
|
|
|
|
def topic_count
|
|
object.topics.count
|
|
end
|
|
|
|
def reply_count
|
|
object.user_stat.topic_reply_count
|
|
end
|
|
|
|
def site_flagged_posts_count
|
|
PostAction.flagged_posts_count
|
|
end
|
|
|
|
def can_edit
|
|
true
|
|
end
|
|
|
|
def can_invite_to_forum
|
|
true
|
|
end
|
|
|
|
def include_can_invite_to_forum?
|
|
scope.can_invite_to_forum?
|
|
end
|
|
|
|
def no_password
|
|
true
|
|
end
|
|
|
|
def include_no_password?
|
|
!object.has_password?
|
|
end
|
|
|
|
def include_can_delete_account?
|
|
scope.can_delete_user?(object)
|
|
end
|
|
|
|
def can_delete_account
|
|
true
|
|
end
|
|
|
|
def include_redirected_to_top_reason?
|
|
object.redirected_to_top_reason.present?
|
|
end
|
|
|
|
end
|