refactor: remove coupling with form context

Signed-off-by: Benjamin Janssens <benji.janssens@gmail.com>
This commit is contained in:
Benjamin Janssens
2025-12-16 09:49:35 +01:00
parent 5ce3294f8d
commit 49579170e9
3 changed files with 8 additions and 28 deletions
@@ -488,8 +488,6 @@ repoUrl:
host: github.com
```
This value will be overridden if a different host is specified in a `RepoUrlPicker` field extension.
### `excludedOwners`
List of owners that should be excluded from autocompletion.
@@ -570,12 +570,13 @@ Similar to the repository picker, there is a picker for owners to support autoco
ui:field: RepoOwnerPicker
ui:options:
host: github.com
excludedOwners:
- backstage
requestUserCredentials:
secretsKey: USER_OAUTH_TOKEN
```
Passing the `requestUserCredentials` and `host` properties is required for autocompletion to work. Only if the template contains a `RepoUrlPicker` field extension, `host` can be omitted as it will use the host specified in the field extension.
For more information regarding the `requestUserCredentials` object, please refer to the [Using the Users `oauth` token](#using-the-users-oauth-token) section under [The Repository Picker](#the-repository-picker).
Passing the `requestUserCredentials` and `host` properties is required for autocompletion to work. For more information regarding the `requestUserCredentials` object, please refer to the [Using the Users `oauth` token](#using-the-users-oauth-token) section under [The Repository Picker](#the-repository-picker).
For a list of all possible `ui:options` input props for `RepoOwnerPicker`, please visit [here](./ui-options-examples.md#repoownerpicker).