open-vault/ui/app/adapters/permissions.js
Noelle Daley 58dfd8aa68
Add Policy-based Navigation (#5967)
* add permissions service

* start template helper

* match prefixed paths

* gate sidebar links

* land on first page user has access to

* show nav when user first logs in

* clear paths when user logs out

* add tests

* implement feedback

* show all nav items if no policy is found

* update onboarding wizard

* fix some unrelated tests

* add support for namespaces

* gate wizard

* unstage package and lockfile
2019-01-18 14:04:40 -08:00

12 lines
245 B
JavaScript

import ApplicationAdapter from './application';
export default ApplicationAdapter.extend({
query() {
return this.ajax(this.urlForQuery(), 'GET');
},
urlForQuery() {
return this.buildURL() + '/internal/ui/resultant-acl';
},
});