forked from linnovate/mean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
39 lines (36 loc) · 1009 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
//Setting up route
angular.module('mean').config(['$stateProvider', '$urlRouterProvider',
function($stateProvider, $urlRouterProvider) {
// For unmatched routes:
$urlRouterProvider.otherwise('/');
// states for my app
$stateProvider
.state('all articles', {
url: '/articles',
templateUrl: 'views/articles/list.html'
})
.state('create article', {
url: '/articles/create',
templateUrl: 'views/articles/create.html'
})
.state('edit article', {
url: '/articles/:articleId/edit',
templateUrl: 'views/articles/edit.html'
})
.state('article by id', {
url: '/articles/:articleId',
templateUrl: 'views/articles/view.html'
})
.state('home', {
url: '/',
templateUrl: 'views/index.html'
});
}
]);
//Setting HTML5 Location Mode
angular.module('mean').config(['$locationProvider',
function($locationProvider) {
$locationProvider.hashPrefix('!');
}
]);