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