2013-02-05 14:16:51 -05:00
|
|
|
class CurrentUserSerializer < BasicUserSerializer
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
attributes :name,
|
|
|
|
:unread_notifications,
|
|
|
|
:unread_private_messages,
|
|
|
|
:admin?,
|
|
|
|
:notification_channel_position,
|
2013-02-07 16:40:48 -05:00
|
|
|
:site_flagged_posts_count,
|
2013-02-14 12:10:53 -05:00
|
|
|
:moderator?,
|
2013-05-02 03:22:27 -04:00
|
|
|
:staff?,
|
2013-02-14 17:58:44 -05:00
|
|
|
:reply_count,
|
2013-03-12 23:06:58 -04:00
|
|
|
:topic_count,
|
2013-04-27 20:37:53 -04:00
|
|
|
:enable_quoting,
|
|
|
|
:external_links_in_new_tab,
|
2013-06-15 02:58:24 -04:00
|
|
|
:dynamic_favicon,
|
2013-06-11 12:30:38 -04:00
|
|
|
:trust_level,
|
2013-11-06 12:56:26 -05:00
|
|
|
:can_edit,
|
2014-01-21 12:42:20 -05:00
|
|
|
:can_invite_to_forum,
|
2014-02-13 11:42:35 -05:00
|
|
|
:no_password,
|
2014-03-07 12:58:53 -05:00
|
|
|
:can_delete_account,
|
|
|
|
:should_be_redirected_to_top,
|
|
|
|
:redirected_to_top_reason
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def include_site_flagged_posts_count?
|
2013-05-02 03:22:27 -04:00
|
|
|
object.staff?
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-14 17:58:44 -05:00
|
|
|
def topic_count
|
|
|
|
object.topics.count
|
|
|
|
end
|
|
|
|
|
|
|
|
def reply_count
|
2013-10-03 23:28:49 -04:00
|
|
|
object.user_stat.topic_reply_count
|
2013-02-14 12:10:53 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def site_flagged_posts_count
|
|
|
|
PostAction.flagged_posts_count
|
|
|
|
end
|
2013-02-14 17:58:44 -05:00
|
|
|
|
2013-06-11 12:30:38 -04:00
|
|
|
def can_edit
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2013-11-06 12:56:26 -05:00
|
|
|
def can_invite_to_forum
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_can_invite_to_forum?
|
|
|
|
scope.can_invite_to_forum?
|
|
|
|
end
|
|
|
|
|
2014-01-21 12:42:20 -05:00
|
|
|
def no_password
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_no_password?
|
|
|
|
!object.has_password?
|
|
|
|
end
|
|
|
|
|
2014-02-13 11:42:35 -05:00
|
|
|
def include_can_delete_account?
|
2014-02-13 15:51:19 -05:00
|
|
|
scope.can_delete_user?(object)
|
2014-02-13 11:42:35 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_delete_account
|
2014-02-13 15:51:19 -05:00
|
|
|
true
|
2014-02-13 11:42:35 -05:00
|
|
|
end
|
|
|
|
|
2014-03-07 12:58:53 -05:00
|
|
|
def include_redirected_to_top_reason?
|
|
|
|
object.should_be_redirected_to_top
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|