/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: BUSL-1.1 */ import buildRoutes from 'ember-engines/routes'; export default buildRoutes(function () { this.route('messages', function () { this.route('create'); this.route('message', { path: '/:id' }, function () { this.route('details'); this.route('edit'); }); }); });