change to https
This commit is contained in:
parent
f08bf51c70
commit
406ff27e27
|
|
@ -90,7 +90,7 @@ final class ProjectController extends AbstractController
|
||||||
try {
|
try {
|
||||||
foreach ($project->getApplications() as $appId) {
|
foreach ($project->getApplications() as $appId) {
|
||||||
$app = $this->appsRepository->find($appId);
|
$app = $this->appsRepository->find($appId);
|
||||||
$clientUrl = 'http://' . $app->getSubDomain() . '.' .$this->getParameter('app_domain') ;
|
$clientUrl = 'https://' . $app->getSubDomain() . '.' .$this->getParameter('app_domain') ;
|
||||||
$this->SSOProjectService->createRemoteProject($clientUrl, $project);
|
$this->SSOProjectService->createRemoteProject($clientUrl, $project);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -136,7 +136,7 @@ final class ProjectController extends AbstractController
|
||||||
try {
|
try {
|
||||||
foreach ($project->getApplications() as $appId) {
|
foreach ($project->getApplications() as $appId) {
|
||||||
$app = $this->appsRepository->find($appId);
|
$app = $this->appsRepository->find($appId);
|
||||||
$clientUrl = 'http://' . $app->getSubDomain() . '.' .$this->getParameter('app_domain') ;
|
$clientUrl = 'https://' . $app->getSubDomain() . '.' .$this->getParameter('app_domain') ;
|
||||||
$this->SSOProjectService->editRemoteProject($clientUrl, $project);
|
$this->SSOProjectService->editRemoteProject($clientUrl, $project);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -221,7 +221,7 @@ final class ProjectController extends AbstractController
|
||||||
try {
|
try {
|
||||||
foreach ($project->getApplications() as $appId) {
|
foreach ($project->getApplications() as $appId) {
|
||||||
$app = $this->appsRepository->find($appId);
|
$app = $this->appsRepository->find($appId);
|
||||||
$clientUrl = 'http://' . $app->getSubDomain() . '.' .$this->getParameter('app_domain') ;
|
$clientUrl = 'https://' . $app->getSubDomain() . '.' .$this->getParameter('app_domain') ;
|
||||||
$this->SSOProjectService->deleteRemoteProject($clientUrl, $project->getId());
|
$this->SSOProjectService->deleteRemoteProject($clientUrl, $project->getId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue