Fixed admin -> group -> show
This commit is contained in:
parent
67896ea9a2
commit
ce484fa9da
4 changed files with 4 additions and 6 deletions
|
@ -76,7 +76,7 @@
|
||||||
%tr{class: "user_#{u.id}"}
|
%tr{class: "user_#{u.id}"}
|
||||||
%td.name= link_to u.name, admin_user_path(u)
|
%td.name= link_to u.name, admin_user_path(u)
|
||||||
%td.projects_access
|
%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
|
- u_p = u.users_projects.in_project(project).first
|
||||||
%span
|
%span
|
||||||
= project.name
|
= project.name
|
||||||
|
|
|
@ -120,7 +120,7 @@
|
||||||
for commits
|
for commits
|
||||||
|
|
||||||
-# this example will only be shown if the user has a project with at least one issue
|
-# 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
|
- if issue = @project.issues.first
|
||||||
%p For example in your #{link_to @project.name, project_path(@project)} project, writing:
|
%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."
|
%pre= "This is related to ##{issue.id}. @#{current_user.name} is working on solving it."
|
||||||
|
|
|
@ -56,6 +56,4 @@ class AdminGroups < Spinach::FeatureSteps
|
||||||
def current_group
|
def current_group
|
||||||
@group ||= Group.first
|
@group ||= Group.first
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@ class Groups < Spinach::FeatureSteps
|
||||||
end
|
end
|
||||||
|
|
||||||
def project
|
def project
|
||||||
current_group.authorized_projects.first
|
current_group.projects.first
|
||||||
end
|
end
|
||||||
|
|
||||||
def assigned_to_me key
|
def assigned_to_me key
|
||||||
|
|
Loading…
Add table
Reference in a new issue