Skip to content

Commit

Permalink
feat: added prefix to description #1
Browse files Browse the repository at this point in the history
  • Loading branch information
AnWeber committed Mar 8, 2021
1 parent 8ae0ad3 commit 46ef991
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/variables/replacer/oauth/authorizationCodeFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class AuthorizationCodeFlow implements OpenIdFlow {
config: config,
id: context.cacheKey,
title: `authorization_code: ${config.clientId}`,
description: config.tokenEndpoint
description: `${config.variablePrefix} - ${config.tokenEndpoint}`
});
resolve(openIdInformation);
return {
Expand Down
2 changes: 1 addition & 1 deletion src/variables/replacer/oauth/clientCredentialsFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ClientCredentialsFlow implements OpenIdFlow {
config: config,
id: context.cacheKey,
title: `clientCredentials: ${config.clientId}`,
description: config.tokenEndpoint
description: `${config.variablePrefix} - ${config.tokenEndpoint}`
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/variables/replacer/oauth/implicitFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class ImplicitFlow implements OpenIdFlow {
config: config,
id: context.cacheKey,
title: `implicit: ${config.clientId}`,
description: config.tokenEndpoint
description: `${config.variablePrefix} - ${config.tokenEndpoint}`
});
resolve(openIdInformation);
return {
Expand Down
2 changes: 1 addition & 1 deletion src/variables/replacer/oauth/passwordFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class PasswordFlow implements OpenIdFlow {
config: config,
id: context.cacheKey,
title: `PasswordFlow: ${config.username} (${config.clientId})`,
description: config.tokenEndpoint
description: `${config.variablePrefix} - ${config.tokenEndpoint}`
});
}
}
Expand Down

0 comments on commit 46ef991

Please sign in to comment.