Allow custom label for auth provider (#15673)

* Allow to pass custom label for auth provider

* Add tests

* Update api/src/cli/utils/create-env/env-stub.liquid

* Fix tests

Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com>
This commit is contained in:
José Varela
2022-10-15 04:14:00 +01:00
committed by GitHub
parent ef895fb784
commit da2998a7e7
6 changed files with 91 additions and 2 deletions

View File

@@ -2,4 +2,5 @@ export interface AuthProvider {
driver: string;
name: string;
icon?: string;
label: string;
}