15 lines
365 B
JavaScript
15 lines
365 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
const MANAGED_AUTH_BACKENDS = ['cert', 'userpass', 'ldap', 'okta', 'radius'];
|
|
|
|
export function supportedManagedAuthBackends() {
|
|
return MANAGED_AUTH_BACKENDS;
|
|
}
|
|
|
|
export default buildHelper(supportedManagedAuthBackends);
|