mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 15:06:06 +00:00
16 lines
259 B
PHP
16 lines
259 B
PHP
<?php
|
|
|
|
namespace Espo\Controllers;
|
|
|
|
class App extends \Espo\Core\Controllers\Record
|
|
{
|
|
public function actionUser()
|
|
{
|
|
return array(
|
|
'user' => $this->getUser()->toArray(),
|
|
'acl' => $this->getAcl()->toArray(),
|
|
'preferences' => array(),
|
|
);
|
|
}
|
|
}
|