mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 09:53:15 +00:00
masquing some native Api application in user porfil -> Application tab
This commit is contained in:
@@ -215,15 +215,23 @@ class AccountController extends Controller
|
||||
{
|
||||
$data = [];
|
||||
|
||||
$nativeApp = [
|
||||
\API_OAuth2_Application_Navigator::CLIENT_NAME,
|
||||
\API_OAuth2_Application_OfficePlugin::CLIENT_NAME,
|
||||
\API_OAuth2_Application_AdobeCCPlugin::CLIENT_NAME,
|
||||
];
|
||||
|
||||
$user = $this->getAuthenticatedUser();
|
||||
foreach (
|
||||
$this->getApiApplicationRepository()->findByUser($user) as $application) {
|
||||
$account = $this->getApiAccountRepository()->findByUserAndApplication($user, $application);
|
||||
|
||||
$data[$application->getId()] = [
|
||||
'application' => $application,
|
||||
'user-account' => $account,
|
||||
];
|
||||
if(!in_array($application->getName(), $nativeApp)){
|
||||
$data[$application->getId()] = [
|
||||
'application' => $application,
|
||||
'user-account' => $account,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
return $this->render('account/authorized_apps.html.twig', [
|
||||
|
Reference in New Issue
Block a user