change to https
This commit is contained in:
parent
f08bf51c70
commit
406ff27e27
|
|
@ -90,7 +90,7 @@ final class ProjectController extends AbstractController
|
|||
try {
|
||||
foreach ($project->getApplications() as $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);
|
||||
}
|
||||
|
||||
|
|
@ -136,7 +136,7 @@ final class ProjectController extends AbstractController
|
|||
try {
|
||||
foreach ($project->getApplications() as $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);
|
||||
}
|
||||
|
||||
|
|
@ -221,7 +221,7 @@ final class ProjectController extends AbstractController
|
|||
try {
|
||||
foreach ($project->getApplications() as $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());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue