mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
Merge branch 'master' of github.com:beyondcode/phunnel
This commit is contained in:
@@ -33,8 +33,8 @@ class GetUserDetailsController extends AdminController
|
|||||||
$promise = $this->userRepository->getUserById($id);
|
$promise = $this->userRepository->getUserById($id);
|
||||||
}
|
}
|
||||||
|
|
||||||
$promise->then(function ($user) use ($httpConnection, $request) {
|
$promise->then(function ($user) use ($httpConnection) {
|
||||||
$this->subdomainRepository->getSubdomainsByUserId($user['id'])
|
$this->subdomainRepository->getSubdomainsByUserId($user['id'])
|
||||||
->then(function ($subdomains) use ($httpConnection, $user) {
|
->then(function ($subdomains) use ($httpConnection, $user) {
|
||||||
$httpConnection->send(
|
$httpConnection->send(
|
||||||
respond_json([
|
respond_json([
|
||||||
@@ -45,6 +45,6 @@ class GetUserDetailsController extends AdminController
|
|||||||
|
|
||||||
$httpConnection->close();
|
$httpConnection->close();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user