mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-26 00:51:08 +02:00
* =VAULT-34544 userpass * update args for okta and oidc-jwt * add todo * VAULT-34551 tested github login * VAULT-34550 tested radius login * VAULT-34545 tested ldap login * test token
16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import AuthBase from './base';
|
|
|
|
/**
|
|
* @module Auth::Form::Radius
|
|
* see Auth::Base
|
|
*/
|
|
|
|
export default class AuthFormRadius extends AuthBase {
|
|
loginFields = [{ name: 'username' }, { name: 'password' }];
|
|
}
|