Skip to content

Commit

Permalink
Merge branch 'test' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
krkabol authored Dec 16, 2024
2 parents 25684a8 + 1841d7f commit a13f43f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/src/Service/Rest/DevelopersService.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class DevelopersService
{
protected const array Domains = ["http://nginx:8080/", "https://services.jacq.org/jacq-"];
protected const array Domains = ["https://jacq.dyn.cloud.e-infra.cz/", "https://services.jacq.org/jacq-"];

public function __construct(protected readonly EntityManagerInterface $entityManager, protected HttpClientInterface $client, protected RouterInterface $router)
{
Expand All @@ -19,7 +19,7 @@ public function testApiWithExamples(): array
{
$results = [];
// $symfonySwaggerPath = $this->router->generate("app.swagger", [], UrlGeneratorInterface::ABSOLUTE_URL);
$responseSwagger = $this->client->request('GET', 'http://nginx:8080/services/doc.json');
$responseSwagger = $this->client->request('GET', 'https://jacq.dyn.cloud.e-infra.cz/services/doc.json');
$apiDoc = json_decode($responseSwagger->getContent(), true);
$i=0;
foreach ($apiDoc['paths'] as $path => $methods) {
Expand Down

0 comments on commit a13f43f

Please sign in to comment.