BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
e376f315
Commit
e376f315
authored
Dec 04, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Admin can move project to ANY namespace. Updated permissions page
parent
2a1c5cdf
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
16 deletions
+23
-16
project_update_context.rb
app/contexts/project_update_context.rb
+3
-1
ability.rb
app/models/ability.rb
+2
-1
_form.html.haml
app/views/admin/projects/_form.html.haml
+1
-1
permissions.html.haml
app/views/help/permissions.html.haml
+17
-13
No files found.
app/contexts/project_update_context.rb
View file @
e376f315
...
...
@@ -2,7 +2,9 @@ class ProjectUpdateContext < BaseContext
def
execute
(
role
=
:default
)
namespace_id
=
params
[
:project
].
delete
(
:namespace_id
)
if
can?
(
current_user
,
:change_namespace
,
project
)
&&
namespace_id
.
present?
allowed_transfer
=
can?
(
current_user
,
:change_namespace
,
project
)
||
role
==
:admin
if
allowed_transfer
&&
namespace_id
.
present?
if
namespace_id
==
Namespace
.
global_id
if
project
.
namespace
.
present?
# Transfer to global namespace from anyone
...
...
app/models/ability.rb
View file @
e376f315
...
...
@@ -99,7 +99,8 @@ class Ability
def
project_admin_rules
project_master_rules
+
[
:change_namespace
,
:rename_project
:rename_project
,
:remove_project
]
end
...
...
app/views/admin/projects/_form.html.haml
View file @
e376f315
...
...
@@ -23,7 +23,7 @@
.clearfix
=
f
.
label
:namespace_id
.input
=
f
.
select
:namespace_id
,
namespaces_options
(
@project
.
namespace_id
),
{},
{
class:
'chosen'
}
=
f
.
select
:namespace_id
,
namespaces_options
(
@project
.
namespace_id
,
:all
),
{},
{
class:
'chosen'
}
%span
.cred
Be careful. Changing project namespace can have unintended side effects
...
...
app/views/help/permissions.html.haml
View file @
e376f315
...
...
@@ -4,17 +4,16 @@
←
to index
%hr
.row
.ui-box.span2
%h5
Guest
%ul
.unstyled
%fieldset
%legend
Guest
%ul
%li
Create new issue
%li
Leave comments
%li
Write on project wall
.ui-box.span3
%h5
Reporter
%ul
.unstyled
%fieldset
%legend
Reporter
%ul
%li
Create new issue
%li
Leave comments
%li
Write on project wall
...
...
@@ -24,9 +23,9 @@
%li
Create a code snippets
.ui-box.span3
%h5
Developer
%ul
.unstyled
%fieldset
%legend
Developer
%ul
%li
Create new issue
%li
Leave comments
%li
Write on project wall
...
...
@@ -40,9 +39,9 @@
%li
Add tags
%li
Write a wiki
.ui-box.span3
%h5
Master
%ul
.unstyled
%fieldset
%legend
Master
%ul
%li
Create new issue
%li
Leave comments
%li
Write on project wall
...
...
@@ -62,3 +61,8 @@
%li
Edit project
%li
Add Deploy Keys to project
%li
Configure Project Hooks
%fieldset
%legend
Owner
%ul
%li
Transfer project to another namespace
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