the browser-facing portion of osu!
at master 24 lines 610 B view raw
1<?php 2 3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 4// See the LICENCE file in the repository root for full licence text. 5 6namespace App\Transformers; 7 8class CurrentUserTransformer extends UserTransformer 9{ 10 public function __construct() 11 { 12 $this->defaultIncludes = [ 13 ...$this->defaultIncludes, 14 'blocks', 15 'follow_user_mapping', 16 'friends', 17 'groups', 18 'is_admin', 19 'team', 20 'unread_pm_count', 21 'user_preferences', 22 ]; 23 } 24}