We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4296fa1 commit bfa29a2Copy full SHA for bfa29a2
src/Service/BifrostService.php
@@ -2,6 +2,8 @@
2
3
namespace SilverStripe\ForagerBifrost\Service;
4
5
+use SilverStripe\Control\Controller;
6
+use SilverStripe\Core\Environment;
7
use SilverStripe\Forager\Exception\IndexConfigurationException;
8
use SilverStripe\ForagerElasticEnterprise\Service\EnterpriseSearchService;
9
@@ -20,7 +22,7 @@ public function getExternalURLDescription(): ?string
20
22
21
23
public function getDocumentationURL(): ?string
24
{
- return sprintf('%s/api/v1/docs', $this->getExternalURL());
25
+ return Controller::join_links(Environment::getEnv('BIFROST_ENDPOINT'), '/resources/guides/index.html');
26
}
27
28
/**
0 commit comments