Commit 43ebc172 by Torkel Ödegaard

fix(profile): fixed change password link and page, fixes #4542

parent 892e79a9
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
* **Page Load Crash**: A Datasource with null jsonData would make Grafana fail to load page, fixes [#4536](https://github.com/grafana/grafana/issues/4536) * **Page Load Crash**: A Datasource with null jsonData would make Grafana fail to load page, fixes [#4536](https://github.com/grafana/grafana/issues/4536)
* **Metrics tab**: Fix for missing datasource name in datasource selector, fixes [#4540](https://github.com/grafana/grafana/issues/4540) * **Metrics tab**: Fix for missing datasource name in datasource selector, fixes [#4540](https://github.com/grafana/grafana/issues/4540)
* **Graph**: Fix legend in table mode with series on right-y axis, fixes [#4551](https://github.com/grafana/grafana/issues/4551), [#1145](https://github.com/grafana/grafana/issues/1145) * **Graph**: Fix legend in table mode with series on right-y axis, fixes [#4551](https://github.com/grafana/grafana/issues/4551), [#1145](https://github.com/grafana/grafana/issues/1145)
* **Password**: Password reset link/page did not work, fixes [#4542](https://github.com/grafana/grafana/issues/4542)
# 3.0.0-beta1 (2016-03-31) # 3.0.0-beta1 (2016-03-31)
......
...@@ -29,6 +29,7 @@ func Register(r *macaron.Macaron) { ...@@ -29,6 +29,7 @@ func Register(r *macaron.Macaron) {
// authed views // authed views
r.Get("/profile/", reqSignedIn, Index) r.Get("/profile/", reqSignedIn, Index)
r.Get("/profile/password", reqSignedIn, Index)
r.Get("/org/", reqSignedIn, Index) r.Get("/org/", reqSignedIn, Index)
r.Get("/org/new", reqSignedIn, Index) r.Get("/org/new", reqSignedIn, Index)
r.Get("/datasources/", reqSignedIn, Index) r.Get("/datasources/", reqSignedIn, Index)
......
...@@ -94,7 +94,7 @@ function setupAngularRoutes($routeProvider, $locationProvider) { ...@@ -94,7 +94,7 @@ function setupAngularRoutes($routeProvider, $locationProvider) {
resolve: loadOrgBundle, resolve: loadOrgBundle,
}) })
.when('/profile/password', { .when('/profile/password', {
templateUrl: 'public/app/features/org/partials/password.html', templateUrl: 'public/app/features/org/partials/change_password.html',
controller : 'ChangePasswordCtrl', controller : 'ChangePasswordCtrl',
resolve: loadOrgBundle, resolve: loadOrgBundle,
}) })
......
...@@ -3,6 +3,7 @@ define([ ...@@ -3,6 +3,7 @@ define([
'./profile_ctrl', './profile_ctrl',
'./org_users_ctrl', './org_users_ctrl',
'./select_org_ctrl', './select_org_ctrl',
'./change_password_ctrl',
'./newOrgCtrl', './newOrgCtrl',
'./userInviteCtrl', './userInviteCtrl',
'./orgApiKeysCtrl', './orgApiKeysCtrl',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment