-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.js
More file actions
42 lines (35 loc) · 1.15 KB
/
Copy pathconstants.js
File metadata and controls
42 lines (35 loc) · 1.15 KB
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
40
41
42
(function() {
'use strict';
angular.module('ds')
.constant('ROUTES', (function() {
return {
MAIN: '/app',
NEWS: '/news',
JUDGE: '/judge',
SNE: '/shows-n-entries',
SHOWBREEDS: '/showbreeds',
SHOWBREEDS2: '/showbreeds2',
SHOWBREEDS3: '/showbreeds3',
SHOWBREEDS4: '/showbreeds4',
SHOWINFO: '/showinfo',
SHOWPROGRAM: '/showprogram',
SHOWPROGRAMDETAIL: "/showprogramdetail",
BREEDS: '/breeds',
BREED: '/breed',
BREEDINFO: '/breedinfo',
BREEDSTATS: '/breedstats',
SHOWTROPHYS: '/showtrophys',
SHOWTROPHYSFCI: '/showtrophysfci',
ENTRIES: '/entries',
LOGIN: '/login',
REGISTRATION: '/registration'
};
})())
.constant('appVersion', (function() {
var appVersion = {
dev: "dev",
live: "live"
};
return appVersion.live;
})());
})();