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
262 B
TypeScript
16 lines
262 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import AuthBase from './base';
|
|
|
|
/**
|
|
* @module Auth::Form::Token
|
|
* see Auth::Base
|
|
* */
|
|
|
|
export default class AuthFormToken extends AuthBase {
|
|
loginFields = [{ name: 'token' }];
|
|
}
|