summaryrefslogtreecommitdiff
path: root/app/views/team_members
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-11 09:39:49 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-11 09:39:49 +0300
commitc351b8a3e53c05c73f3365cc738c9437e8774392 (patch)
tree0d869ac9b5c492f271d36c5a201b96659db4293a /app/views/team_members
parent7786fe7ca84503ac2f00253f7097c754c51c1062 (diff)
downloadgitlab-ce-c351b8a3e53c05c73f3365cc738c9437e8774392.tar.gz
remove yaml_db gem, Replace team members index route with team_index
Diffstat (limited to 'app/views/team_members')
-rw-r--r--app/views/team_members/index.html.haml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/team_members/index.html.haml b/app/views/team_members/index.html.haml
index 50d44bcd8d8..3132fd5ca8a 100644
--- a/app/views/team_members/index.html.haml
+++ b/app/views/team_members/index.html.haml
@@ -22,22 +22,22 @@
.span3
%ul.nav.nav-pills.nav-stacked
%li{class: ("active" if !params[:type])}
- = link_to project_team_members_path(type: nil) do
+ = link_to project_team_index_path(type: nil) do
All
%li{class: ("active" if params[:type] == 'masters')}
- = link_to project_team_members_path(type: 'masters') do
+ = link_to project_team_index_path(type: 'masters') do
Masters
%span.pull-right= @project.users_projects.masters.count
%li{class: ("active" if params[:type] == 'developers')}
- = link_to project_team_members_path(type: 'developers') do
+ = link_to project_team_index_path(type: 'developers') do
Developers
%span.pull-right= @project.users_projects.developers.count
%li{class: ("active" if params[:type] == 'reporters')}
- = link_to project_team_members_path(type: 'reporters') do
+ = link_to project_team_index_path(type: 'reporters') do
Reporters
%span.pull-right= @project.users_projects.reporters.count
%li{class: ("active" if params[:type] == 'guests')}
- = link_to project_team_members_path(type: 'guests') do
+ = link_to project_team_index_path(type: 'guests') do
Guests
%span.pull-right= @project.users_projects.guests.count