ab1fd3255b
* chane form field to angle bracket syntax * computes tuneAttrs depending on auth method type * make all attrs linkable * delete token_type for token auth methods before save * adds changelog * adds copy to unsupported auth methods * adds doc link to copy * adds test for linkable auth method list
10 lines
287 B
JavaScript
10 lines
287 B
JavaScript
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);
|