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
237a9a35
Commit
237a9a35
authored
Oct 03, 2017
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CE->EE] Resolve conflicts
parent
4b0ef4a7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
38 deletions
+0
-38
locale/gitlab.pot
locale/gitlab.pot
+0
-13
spec/lib/gitlab/shell_spec.rb
spec/lib/gitlab/shell_spec.rb
+0
-4
spec/lib/gitlab/workhorse_spec.rb
spec/lib/gitlab/workhorse_spec.rb
+0
-3
spec/policies/namespace_policy_spec.rb
spec/policies/namespace_policy_spec.rb
+0
-18
No files found.
locale/gitlab.pot
View file @
237a9a35
...
...
@@ -8,13 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: gitlab 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
<<<<<<< HEAD
"POT-Creation-Date: 2017-09-27 16:26+0200\n"
"PO-Revision-Date: 2017-09-27 16:26+0200\n"
=======
"POT-Creation-Date: 2017-09-28 13:28-0400\n"
"PO-Revision-Date: 2017-09-28 13:28-0400\n"
>>>>>>> bdc50ed779cb0c7d266c0f80f3e66a25da8b1964
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
...
...
@@ -441,11 +436,7 @@ msgstr ""
msgid "CiStatus|running"
msgstr ""
<<<<<<< HEAD
msgid "Close"
=======
msgid "Clone repository"
>>>>>>> bdc50ed779cb0c7d266c0f80f3e66a25da8b1964
msgstr ""
msgid "Comments"
...
...
@@ -1788,9 +1779,6 @@ msgstr ""
msgid "Wiki"
msgstr ""
<<<<<<< HEAD
msgid "With contribution analytics you can have an overview for the activity of issues, merge requests and push events of your organization and its members."
=======
msgid "WikiClone|Clone your wiki"
msgstr ""
...
...
@@ -1888,7 +1876,6 @@ msgid "Wiki|Pages"
msgstr ""
msgid "Wiki|Wiki Pages"
>>>>>>> bdc50ed779cb0c7d266c0f80f3e66a25da8b1964
msgstr ""
msgid "Withdraw Access Request"
...
...
spec/lib/gitlab/shell_spec.rb
View file @
237a9a35
...
...
@@ -474,11 +474,7 @@ describe Gitlab::Shell do
end
end
<<<<<<<
HEAD
context
'with gitlay'
do
=======
context
'with gitaly'
do
>>>>>>>
bdc50ed779cb0c7d266c0f80f3e66a25da8b1964
it_behaves_like
'#add_repository'
end
...
...
spec/lib/gitlab/workhorse_spec.rb
View file @
237a9a35
...
...
@@ -226,12 +226,9 @@ describe Gitlab::Workhorse do
it
'includes a Repository param'
do
repo_param
=
{
storage_name:
'default'
,
<<<<<<<
HEAD
relative_path:
project
.
full_path
+
'.git'
=======
relative_path:
project
.
full_path
+
'.git'
,
gl_repository:
"project-
#{
project
.
id
}
"
>>>>>>>
bdc50ed779cb0c7d266c0f80f3e66a25da8b1964
}
expect
(
subject
[
:Repository
]).
to
include
(
repo_param
)
...
...
spec/policies/namespace_policy_spec.rb
View file @
237a9a35
require
'spec_helper'
describe
NamespacePolicy
do
<<<<<<<
HEAD
let
(
:user
)
{
create
(
:user
)
}
let
(
:owner
)
{
create
(
:user
)
}
let
(
:auditor
)
{
create
(
:user
,
:auditor
)
}
...
...
@@ -50,22 +49,5 @@ describe NamespacePolicy do
let
(
:current_user
)
{
admin
}
it
{
is_expected
.
to
be_allowed
(
*
owner_permissions
)
}
=======
let
(
:current_user
)
{
create
(
:user
)
}
let
(
:namespace
)
{
current_user
.
namespace
}
subject
{
described_class
.
new
(
current_user
,
namespace
)
}
context
"create projects"
do
context
"user namespace"
do
it
{
is_expected
.
to
be_allowed
(
:create_projects
)
}
end
context
"user who has exceeded project limit"
do
let
(
:current_user
)
{
create
(
:user
,
projects_limit:
0
)
}
it
{
is_expected
.
not_to
be_allowed
(
:create_projects
)
}
end
>>>>>>>
bdc50ed779cb0c7d266c0f80f3e66a25da8b1964
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