chore: add comment around payload passed in identity resolver

This commit is contained in:
Jonah Back
2021-01-12 15:21:44 -08:00
committed by Jonah Back
parent 0643a3336a
commit 2335fa9d17
@@ -113,6 +113,9 @@ export interface AuthProviderRouteHandlers {
}
export type IdentityResolver = (
/**
* An object containing information specific to the auth provider.
*/
payload: object,
catalogApi: CatalogApi,
) => Promise<AuthResponse<any>>;