58dfd8aa68
* 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
12 lines
245 B
JavaScript
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';
|
|
},
|
|
});
|