use diff in changelog

Signed-off-by: Christopher Diaz <cdiaz@rvohealth.com>
This commit is contained in:
Christopher Diaz
2023-05-18 08:53:10 -04:00
parent 30033cc2b5
commit f6e0586381
+4 -4
View File
@@ -2,15 +2,15 @@
'@backstage/plugin-search-backend-module-explore': patch
---
Allows for an optional token manager to authenticate requests from the collator to the explore backend. For example:
Allows for an optional `tokenManager` to authenticate requests from the collator to the explore backend. For example:
```
```diff
indexBuilder.addCollator({
schedule: every10MinutesSchedule,
factory: ToolDocumentCollatorFactory.fromConfig(env.config, {
discovery: env.discovery,
logger: env.logger,
tokenManager: env.tokenManager,
+ tokenManager: env.tokenManager,
}),
});
```
```