Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b040f5da
Commit
b040f5da
authored
Mar 18, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'show-shared-projects' into 'master'
Show shared projects in Group#show page of admin area
parents
44b3404e
822be2c7
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
4 deletions
+41
-4
app/views/admin/groups/show.html.haml
app/views/admin/groups/show.html.haml
+16
-0
app/views/groups/_shared_projects.html.haml
app/views/groups/_shared_projects.html.haml
+0
-3
app/views/projects/_settings_nav.html.haml
app/views/projects/_settings_nav.html.haml
+1
-1
features/admin/groups.feature
features/admin/groups.feature
+5
-0
features/steps/admin/groups.rb
features/steps/admin/groups.rb
+19
-0
No files found.
app/views/admin/groups/show.html.haml
View file @
b040f5da
...
...
@@ -44,6 +44,22 @@
%span
.pull-right.light
%span
.monospace
=
project
.
path_with_namespace
+
".git"
-
if
@group
.
shared_projects
.
any?
.ui-box
.title
Projects shared with
#{
@group
.
name
}
%small
(
#{
@group
.
shared_projects
.
count
}
)
%ul
.well-list
-
@group
.
shared_projects
.
sort_by
(
&
:name
).
each
do
|
project
|
%li
%strong
=
link_to
project
.
name_with_namespace
,
[
:admin
,
project
]
%span
.label.label-gray
=
repository_size
(
project
)
%span
.pull-right.light
%span
.monospace
=
project
.
path_with_namespace
+
".git"
.col-md-6
.ui-box
.title
...
...
app/views/groups/_shared_projects.html.haml
View file @
b040f5da
...
...
@@ -16,6 +16,3 @@
=
truncate
(
project
.
name
,
length:
25
)
%span
.arrow
%i
.icon-angle-right
%span
.last-activity
%span
Last activity:
%span
.date
=
project_last_activity
(
project
)
app/views/projects/_settings_nav.html.haml
View file @
b040f5da
...
...
@@ -9,7 +9,7 @@
Members
=
nav_link
(
controller: :group_links
)
do
=
link_to
project_group_links_path
(
@project
)
do
%
span
%
i
.icon-share
Groups
=
nav_link
(
controller: :deploy_keys
)
do
=
link_to
project_deploy_keys_path
(
@project
)
do
...
...
features/admin/groups.feature
View file @
b040f5da
...
...
@@ -19,3 +19,8 @@ Feature: Admin Groups
When
I visit admin group page
When
I select user
"John Doe"
from user list as
"Reporter"
Then
I should see
"John Doe"
in team list in every project as
"Reporter"
Scenario
:
Shared projects
Given
group has shared projects
When
I visit group page
Then
I should see project shared with group
features/steps/admin/groups.rb
View file @
b040f5da
...
...
@@ -58,9 +58,28 @@ class AdminGroups < Spinach::FeatureSteps
end
end
step
'group has shared projects'
do
share_link
=
shared_project
.
project_group_links
.
new
(
group_access:
Gitlab
::
Access
::
MASTER
)
share_link
.
group_id
=
current_group
.
id
share_link
.
save!
end
step
'I visit group page'
do
visit
admin_group_path
(
current_group
)
end
step
'I should see project shared with group'
do
page
.
should
have_content
(
shared_project
.
name_with_namespace
)
page
.
should
have_content
"Projects shared with"
end
protected
def
current_group
@group
||=
Group
.
first
end
def
shared_project
@shared_project
||=
create
(
:empty_project
)
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment