mirror of https://github.com/rancher/ui.git
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
import C from 'ui/utils/constants';
|
|
import Resource from 'ember-api-store/models/resource';
|
|
|
|
var LdapConfig = Resource.extend({
|
|
type: 'ldapConfig',
|
|
});
|
|
|
|
LdapConfig.reopenClass({
|
|
headers: {
|
|
[C.HEADER.PROJECT]: undefined, // Requests for projects use the user's scope, not the project
|
|
}
|
|
});
|
|
|
|
export default LdapConfig;
|