claire bontempo bdf9c4efd5
UI: Smoke test and add mfa validation support for standard methods (#30424)
* =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
2025-04-28 12:49:27 -07:00

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' }];
}