UNPKG
rfc-process
Version:
latest (1.0.0)
1.0.0
0.4.1
0.4.0
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
The default blueprint for ember-cli addons.
github.com/empress/rfc-process
empress/rfc-process
rfc-process
/
app
/
initializers
/
routes.js
12 lines
(9 loc)
•
177 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
Router
from
'../router'
;
export
function
initialize
(
) {
Router
.
map
(
function
(
) {
this
.
route
(
'rfc'
, {
path
:
'id/:id'
}); }); }
export
default
{ initialize, };