mirror of
https://github.com/flarum/core.git
synced 2025-07-17 14:51:19 +02:00
- Make sure is_activated is serialized to a bool (otherwise "0" will evaluate to true) - Remove "error" class from message so it's more friendly - Make the alert more prominent by mounting it into a new div at the top of the page - Add loading UX to the resend button
34 lines
979 B
PHP
34 lines
979 B
PHP
<?php
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Api\Serializer;
|
|
|
|
class CurrentUserSerializer extends UserSerializer
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getDefaultAttributes($user)
|
|
{
|
|
$attributes = parent::getDefaultAttributes($user);
|
|
|
|
$attributes += [
|
|
'isActivated' => (bool) $user->is_activated,
|
|
'email' => $user->email,
|
|
'readTime' => $this->formatDate($user->read_time),
|
|
'unreadNotificationsCount' => (int) $user->getUnreadNotificationsCount(),
|
|
'newNotificationsCount' => (int) $user->getNewNotificationsCount(),
|
|
'preferences' => (array) $user->preferences
|
|
];
|
|
|
|
return $attributes;
|
|
}
|
|
}
|