Jordan Reimer 8700becc45
[UI] Ember Data Migration - API Property Casing (#31325)
* updates api client vars to snake_case for custom messages

* updates api client vars to snake_case for tools

* updates api client vars to snake_case for sync

* updates api client vars to snake_case for secrets engine

* updates api client vars to snake_case for auth

* updates api client vars to snake_case for usage

* updates api client dep to point to gh repo

* fixes custom-messages service unit tests

* fixes configure-ssh test

* fixes configure-ssh test...again
2025-07-18 09:32:01 -06:00

33 lines
810 B
TypeScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import AuthBase from './base';
import type { UsernameLoginResponse } from 'vault/vault/auth/methods';
/**
* @module Auth::Form::Ldap
* see Auth::Base
*/
export default class AuthFormLdap extends AuthBase {
loginFields = [{ name: 'username' }, { name: 'password' }];
async loginRequest(formData: { path: string; username: string; password: string }) {
const { path, username, password } = formData;
const { auth } = (await this.api.auth.ldapLogin(username, path, {
password,
})) as UsernameLoginResponse;
return this.normalizeAuthResponse(auth, {
authMountPath: path,
displayName: auth?.metadata?.username,
token: auth.client_token,
ttl: auth.lease_duration,
});
}
}