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
dab4d712
Commit
dab4d712
authored
Feb 20, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
a0656d87
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
23 deletions
+1
-23
CHANGELOG-EE.md
CHANGELOG-EE.md
+1
-0
CHANGELOG.md
CHANGELOG.md
+0
-4
app/services/projects/destroy_service.rb
app/services/projects/destroy_service.rb
+0
-4
doc/README.md
doc/README.md
+0
-3
spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
+0
-7
spec/requests/api/users_spec.rb
spec/requests/api/users_spec.rb
+0
-5
No files found.
CHANGELOG-EE.md
View file @
dab4d712
...
...
@@ -6,6 +6,7 @@ Please view this file on the master branch, on stable branches it's out of date.
-
Move RepositoryUpdateRemoteMirrorWorker jobs to project_mirror Sidekiq queue. !1234
-
Fixed merge request environment link not displaying.
-
Reduce queries needed to check if node is a primary or secondary Geo node.
-
Read true-up info from license and validate it. !1159
## 8.16.5 (2017-02-14)
...
...
CHANGELOG.md
View file @
dab4d712
...
...
@@ -5,10 +5,6 @@ entry.
## 8.16.6 (2017-02-17)
-
API: Fix file downloading. !0 (8267)
<<<<<<< HEAD
- Read true-up info from license and validate it. !1159
=======
>>>>>>> ce/master
-
Reduce hits to LDAP on Git HTTP auth by reordering auth mechanisms. !8752
-
Fix filtered search user autocomplete for gitlab instances that are hosted on a subdirectory. !8891
-
Fix wrong call to ProjectCacheWorker.perform. !8910
...
...
app/services/projects/destroy_service.rb
View file @
dab4d712
...
...
@@ -17,12 +17,8 @@ module Projects
def
execute
return
false
unless
can?
(
current_user
,
:remove_project
,
project
)
<<<<<<<
HEAD
project
.
team
.
truncate
=======
repo_path
=
project
.
path_with_namespace
wiki_path
=
repo_path
+
'.wiki'
>>>>>>>
ce
/
master
# Flush the cache for both repositories. This has to be done _before_
# removing the physical repositories as some expiration code depends on
...
...
doc/README.md
View file @
dab4d712
...
...
@@ -23,11 +23,8 @@
-
[
Profile Settings
](
profile/README.md
)
-
[
Project Services
](
user/project/integrations//project_services.md
)
Integrate a project with external services, such as CI and chat.
-
[
Public access
](
public_access/public_access.md
)
Learn how you can allow public and internal access to projects.
<<<<<<< HEAD
-
[
Analytics
](
analytics/README.md
)
=======
-
[
Snippets
](
user/snippets.md
)
Snippets allow you to create little bits of code.
>>>>>>> ce/master
-
[
SSH
](
ssh/README.md
)
Setup your ssh keys and deploy keys for secure access to your projects.
-
[
Webhooks
](
user/project/integrations/webhooks.md
)
Let GitLab notify you when new code has been pushed to your project.
-
[
Workflow
](
workflow/README.md
)
Using GitLab functionality and importing projects from GitHub and SVN.
...
...
spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
View file @
dab4d712
...
...
@@ -15,13 +15,6 @@ describe Gitlab::ImportExport::ProjectTreeRestorer, services: true do
end
end
<<<<<<<
HEAD
after
(
:all
)
do
DatabaseCleaner
.
clean_with
(
:truncation
)
end
=======
>>>>>>>
ce
/
master
context
'JSON'
do
it
'restores models based on JSON'
do
expect
(
@restored_project_json
).
to
be
true
...
...
spec/requests/api/users_spec.rb
View file @
dab4d712
...
...
@@ -1042,13 +1042,8 @@ describe API::Users, api: true do
end
end
<<<<<<<
HEAD
describe
'PUT /users/:id/unblock'
do
let
(
:blocked_user
)
{
create
(
:user
,
state:
'blocked'
)
}
=======
describe
'POST /users/:id/unblock'
do
let
(
:blocked_user
)
{
create
(
:user
,
state:
'blocked'
)
}
>>>>>>>
ce
/
master
before
{
admin
}
it
'unblocks existing user'
do
...
...
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