Skip to content
This repository has been archived by the owner on Jan 7, 2020. It is now read-only.

EPIC-1071 change url activities to dashboard #158

Merged
merged 1 commit into from
Jun 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/core/client/views/header.client.view.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</li>

<li class="custom-nav-item" ng-if="ENV === 'EAO'" ng-show="authentication.user">
<a href ui-sref="activities">
<a href ui-sref="dashboard">
<span class="glyphicon glyphicon-dashboard"></span>
<span>DASHBOARD</span>
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ function controllerProjectEntry ($scope, $state, $stateParams, $modal, project,
};

var goToList = function() {
$state.transitionTo('activities', {}, {
$state.transitionTo('dashboard', {}, {
reload: true, inherit: false, notify: true
});
};
Expand Down
4 changes: 2 additions & 2 deletions modules/users/client/config/users.client.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ angular.module('users').config(['$stateProvider',
templateUrl: 'modules/guidance/client/views/contact.html'
})

.state('activities', {
url: '/activities',
.state('dashboard', {
url: '/dashboard',
templateUrl: 'modules/users/client/views/user-partials/user-activities.html',
cache: false,
resolve: {
Expand Down