Add imported and exported routes for peers.edit

This commit is contained in:
Michael Klein 2022-10-05 12:41:52 +02:00
parent 7f799cd9f5
commit 78b0eb4f43
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,3 @@
<Route @name={{routeName}} as |route|>
<div>This is exported services</div>
</Route>

View File

@ -0,0 +1,3 @@
<Route @name={{routeName}} as |route|>
<div>This is imported services</div>
</Route>

View File

@ -26,6 +26,16 @@
_options: {
path: "/:name",
},
imported: {
_options: {
path: "/imported-services",
},
},
exported: {
_options: {
path: "/exported-services",
},
},
addresses: {
_options: {
path: "/addresses",