|
14 | 14 | .state('settings', {
|
15 | 15 | abstract: true,
|
16 | 16 | url: '/settings',
|
17 |
| - templateUrl: 'modules/users/client/views/settings/settings.client.view.html', |
| 17 | + templateUrl: '/modules/users/client/views/settings/settings.client.view.html', |
18 | 18 | controller: 'SettingsController',
|
19 | 19 | controllerAs: 'vm',
|
20 | 20 | data: {
|
|
23 | 23 | })
|
24 | 24 | .state('settings.profile', {
|
25 | 25 | url: '/profile',
|
26 |
| - templateUrl: 'modules/users/client/views/settings/edit-profile.client.view.html', |
| 26 | + templateUrl: '/modules/users/client/views/settings/edit-profile.client.view.html', |
27 | 27 | controller: 'EditProfileController',
|
28 | 28 | controllerAs: 'vm',
|
29 | 29 | data: {
|
|
32 | 32 | })
|
33 | 33 | .state('settings.password', {
|
34 | 34 | url: '/password',
|
35 |
| - templateUrl: 'modules/users/client/views/settings/change-password.client.view.html', |
| 35 | + templateUrl: '/modules/users/client/views/settings/change-password.client.view.html', |
36 | 36 | controller: 'ChangePasswordController',
|
37 | 37 | controllerAs: 'vm',
|
38 | 38 | data: {
|
|
41 | 41 | })
|
42 | 42 | .state('settings.accounts', {
|
43 | 43 | url: '/accounts',
|
44 |
| - templateUrl: 'modules/users/client/views/settings/manage-social-accounts.client.view.html', |
| 44 | + templateUrl: '/modules/users/client/views/settings/manage-social-accounts.client.view.html', |
45 | 45 | controller: 'SocialAccountsController',
|
46 | 46 | controllerAs: 'vm',
|
47 | 47 | data: {
|
|
50 | 50 | })
|
51 | 51 | .state('settings.picture', {
|
52 | 52 | url: '/picture',
|
53 |
| - templateUrl: 'modules/users/client/views/settings/change-profile-picture.client.view.html', |
| 53 | + templateUrl: '/modules/users/client/views/settings/change-profile-picture.client.view.html', |
54 | 54 | controller: 'ChangeProfilePictureController',
|
55 | 55 | controllerAs: 'vm',
|
56 | 56 | data: {
|
|
60 | 60 | .state('authentication', {
|
61 | 61 | abstract: true,
|
62 | 62 | url: '/authentication',
|
63 |
| - templateUrl: 'modules/users/client/views/authentication/authentication.client.view.html', |
| 63 | + templateUrl: '/modules/users/client/views/authentication/authentication.client.view.html', |
64 | 64 | controller: 'AuthenticationController',
|
65 | 65 | controllerAs: 'vm'
|
66 | 66 | })
|
67 | 67 | .state('authentication.signup', {
|
68 | 68 | url: '/signup',
|
69 |
| - templateUrl: 'modules/users/client/views/authentication/signup.client.view.html', |
| 69 | + templateUrl: '/modules/users/client/views/authentication/signup.client.view.html', |
70 | 70 | controller: 'AuthenticationController',
|
71 | 71 | controllerAs: 'vm',
|
72 | 72 | data: {
|
|
75 | 75 | })
|
76 | 76 | .state('authentication.signin', {
|
77 | 77 | url: '/signin?err',
|
78 |
| - templateUrl: 'modules/users/client/views/authentication/signin.client.view.html', |
| 78 | + templateUrl: '/modules/users/client/views/authentication/signin.client.view.html', |
79 | 79 | controller: 'AuthenticationController',
|
80 | 80 | controllerAs: 'vm',
|
81 | 81 | data: {
|
|
89 | 89 | })
|
90 | 90 | .state('password.forgot', {
|
91 | 91 | url: '/forgot',
|
92 |
| - templateUrl: 'modules/users/client/views/password/forgot-password.client.view.html', |
| 92 | + templateUrl: '/modules/users/client/views/password/forgot-password.client.view.html', |
93 | 93 | controller: 'PasswordController',
|
94 | 94 | controllerAs: 'vm',
|
95 | 95 | data: {
|
|
103 | 103 | })
|
104 | 104 | .state('password.reset.invalid', {
|
105 | 105 | url: '/invalid',
|
106 |
| - templateUrl: 'modules/users/client/views/password/reset-password-invalid.client.view.html', |
| 106 | + templateUrl: '/modules/users/client/views/password/reset-password-invalid.client.view.html', |
107 | 107 | data: {
|
108 | 108 | pageTitle: 'Password reset invalid'
|
109 | 109 | }
|
110 | 110 | })
|
111 | 111 | .state('password.reset.success', {
|
112 | 112 | url: '/success',
|
113 |
| - templateUrl: 'modules/users/client/views/password/reset-password-success.client.view.html', |
| 113 | + templateUrl: '/modules/users/client/views/password/reset-password-success.client.view.html', |
114 | 114 | data: {
|
115 | 115 | pageTitle: 'Password reset success'
|
116 | 116 | }
|
117 | 117 | })
|
118 | 118 | .state('password.reset.form', {
|
119 | 119 | url: '/:token',
|
120 |
| - templateUrl: 'modules/users/client/views/password/reset-password.client.view.html', |
| 120 | + templateUrl: '/modules/users/client/views/password/reset-password.client.view.html', |
121 | 121 | controller: 'PasswordController',
|
122 | 122 | controllerAs: 'vm',
|
123 | 123 | data: {
|
|
0 commit comments