mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 08:31:09 +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
285 B
TypeScript
16 lines
285 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import AuthBase from './base';
|
|
|
|
/**
|
|
* @module Auth::Form::Github
|
|
* see Auth::Base
|
|
*/
|
|
|
|
export default class AuthFormGithub extends AuthBase {
|
|
loginFields = [{ name: 'token', label: 'Github token' }];
|
|
}
|