Fixed admin -> group -> show

This commit is contained in:
Dmitriy Zaporozhets 2013-01-02 20:45:11 +02:00
parent 67896ea9a2
commit ce484fa9da
4 changed files with 4 additions and 6 deletions

View file

@ -76,7 +76,7 @@
%tr{class: "user_#{u.id}"}
%td.name= link_to u.name, admin_user_path(u)
%td.projects_access
- u.projects.in_namespace(@group).each do |project|
- u.authorized_projects.in_namespace(@group).each do |project|
- u_p = u.users_projects.in_project(project).first
%span
= project.name

View file

@ -1,6 +1,6 @@
%h3.page_title GitLab Flavored Markdown
.back_link
= link_to help_path do
= link_to help_path do
← to index
%hr
@ -120,7 +120,7 @@
for commits
-# this example will only be shown if the user has a project with at least one issue
- if @project = current_user.projects.first
- if @project = current_user.authorized_projects.first
- if issue = @project.issues.first
%p For example in your #{link_to @project.name, project_path(@project)} project, writing:
%pre= "This is related to ##{issue.id}. @#{current_user.name} is working on solving it."

View file

@ -56,6 +56,4 @@ class AdminGroups < Spinach::FeatureSteps
def current_group
@group ||= Group.first
end
end

View file

@ -71,7 +71,7 @@ class Groups < Spinach::FeatureSteps
end
def project
current_group.authorized_projects.first
current_group.projects.first
end
def assigned_to_me key