We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e416d3 commit 565e102Copy full SHA for 565e102
ui/app/models/auth-config/ldap.js
@@ -1,11 +1,18 @@
1
import { computed } from '@ember/object';
2
3
+import DS from 'ember-data';
4
import AuthConfig from '../auth-config';
5
import fieldToAttrs from 'vault/utils/field-to-attrs';
6
import { combineFieldGroups } from 'vault/utils/openapi-to-attrs';
7
8
+const { attr } = DS;
9
+
10
export default AuthConfig.extend({
11
useOpenAPI: true,
12
+ certificate: attr({
13
+ label: 'Certificate',
14
+ editType: 'textarea',
15
+ }),
16
fieldGroups: computed(function() {
17
let groups = [
18
{
0 commit comments