@fleetbase/iam-engine
Version:
Fleetbase IAM extension provides identity and access management module for managing users, permissions and policies.
10 lines (8 loc) • 317 B
JavaScript
import buildRoutes from 'ember-engines/routes';
export default buildRoutes(function () {
this.route('home', { path: '/' }, function () {});
this.route('users', function () {});
this.route('groups', function () {});
this.route('roles', function () {});
this.route('policies', function () {});
});