mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-28 07:04:10 +00:00
* feat(#1003): authorization_code grant type PKCE support, code cleanup.. --------- Co-authored-by: lohit-1 <lohit@usebruno.com>
21 lines
277 B
JavaScript
21 lines
277 B
JavaScript
const inputsConfig = [
|
|
{
|
|
key: 'accessTokenUrl',
|
|
label: 'Access Token URL'
|
|
},
|
|
{
|
|
key: 'clientId',
|
|
label: 'Client ID'
|
|
},
|
|
{
|
|
key: 'clientSecret',
|
|
label: 'Client Secret'
|
|
},
|
|
{
|
|
key: 'scope',
|
|
label: 'Scope'
|
|
}
|
|
];
|
|
|
|
export { inputsConfig };
|