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
0
Merge Requests
0
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
iv
gitlab-ce
Commits
cc0295b7
Commit
cc0295b7
authored
12 years ago
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only owner can remove project
parent
6ea6ab7c
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
5 deletions
+13
-5
app/controllers/application_controller.rb
app/controllers/application_controller.rb
+4
-0
app/controllers/projects_controller.rb
app/controllers/projects_controller.rb
+2
-0
app/views/help/permissions.html.haml
app/views/help/permissions.html.haml
+1
-0
app/views/projects/_form.html.haml
app/views/projects/_form.html.haml
+4
-3
app/views/services/_gitlab_ci.html.haml
app/views/services/_gitlab_ci.html.haml
+1
-1
app/views/services/index.html.haml
app/views/services/index.html.haml
+1
-1
No files found.
app/controllers/application_controller.rb
View file @
cc0295b7
...
...
@@ -112,6 +112,10 @@ class ApplicationController < ActionController::Base
render
file:
Rails
.
root
.
join
(
"public"
,
"404"
),
layout:
false
,
status:
"404"
end
def
render_403
render
file:
Rails
.
root
.
join
(
"public"
,
"403"
),
layout:
false
,
status:
"403"
end
def
require_non_empty_project
redirect_to
@project
if
@project
.
empty_repo?
end
...
...
This diff is collapsed.
Click to expand it.
app/controllers/projects_controller.rb
View file @
cc0295b7
...
...
@@ -89,6 +89,8 @@ class ProjectsController < ProjectResourceController
end
def
destroy
return
access_denied!
unless
can?
(
current_user
,
:remove_project
,
project
)
# Disable the UsersProject update_repository call, otherwise it will be
# called once for every person removed from the project
UsersProject
.
skip_callback
(
:destroy
,
:after
,
:update_repository
)
...
...
This diff is collapsed.
Click to expand it.
app/views/help/permissions.html.haml
View file @
cc0295b7
...
...
@@ -66,3 +66,4 @@
%legend
Owner
%ul
%li
Transfer project to another namespace
%li
Remove project
This diff is collapsed.
Click to expand it.
app/views/projects/_form.html.haml
View file @
cc0295b7
...
...
@@ -26,7 +26,7 @@
%span
.cred
Be careful. Changing project namespace can have unintended side effects
-
else
%a
.btn.
btn-small.
disabled
=
@project
.
namespace
.
try
(
:human_name
)
||
"/"
%a
.btn.disabled
=
@project
.
namespace
.
try
(
:human_name
)
||
"/"
%span
.cred
Only owner can change project namespace.
...
...
@@ -69,5 +69,6 @@
=
f
.
submit
'Save'
,
class:
"btn save-btn"
=
link_to
'Cancel'
,
@project
,
class:
"btn"
-
unless
@project
.
new_record?
.right
=
link_to
'Remove'
,
@project
,
confirm:
'Are you sure?'
,
method: :delete
,
class:
"btn danger"
-
if
can?
(
current_user
,
:remove_project
,
@project
)
.right
=
link_to
'Remove'
,
@project
,
confirm:
'Removed project can not be restored! Are you sure?'
,
method: :delete
,
class:
"btn danger"
This diff is collapsed.
Click to expand it.
app/views/services/_gitlab_ci.html.haml
View file @
cc0295b7
...
...
@@ -5,7 +5,7 @@
-
if
@service
.
active
%small
.cgreen
Enabled
-
else
%small
.
btn
Disabled
%small
.
cgray
Disabled
...
...
This diff is collapsed.
Click to expand it.
app/views/services/index.html.haml
View file @
cc0295b7
...
...
@@ -12,7 +12,7 @@
-
if
@gitlab_ci_service
.
active
%small
.cgreen
Enabled
-
else
%small
.
btn
Disabled
%small
.
cgray
Disabled
%li
.wll
%h4
Jenkins CI
...
...
This diff is collapsed.
Click to expand it.
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