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
c8611fb2
Commit
c8611fb2
authored
Jun 20, 2017
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve some of the conflicts[co skip]
parent
1688d7d0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
26 deletions
+0
-26
app/models/merge_request.rb
app/models/merge_request.rb
+0
-3
app/serializers/group_entity.rb
app/serializers/group_entity.rb
+0
-4
config/locales/en.yml
config/locales/en.yml
+0
-3
spec/features/boards/boards_spec.rb
spec/features/boards/boards_spec.rb
+0
-8
spec/features/commits_spec.rb
spec/features/commits_spec.rb
+0
-8
No files found.
app/models/merge_request.rb
View file @
c8611fb2
...
...
@@ -4,14 +4,11 @@ class MergeRequest < ActiveRecord::Base
include
Noteable
include
Referable
include
Sortable
<<<<<<<
HEAD
include
Elastic
::
MergeRequestsSearch
include
Approvable
=======
include
IgnorableColumn
ignore_column
:position
>>>>>>>
bf57a7e80c44080dc7ec0fd774148afdae29cc31
belongs_to
:target_project
,
class_name:
"Project"
belongs_to
:source_project
,
class_name:
"Project"
...
...
app/serializers/group_entity.rb
View file @
c8611fb2
...
...
@@ -10,11 +10,7 @@ class GroupEntity < Grape::Entity
expose
:parent_id
expose
:created_at
,
:updated_at
<<<<<<<
HEAD
expose
:web_url
do
|
group
|
=======
expose
:group_path
do
|
group
|
>>>>>>>
bf57a7e80c44080dc7ec0fd774148afdae29cc31
group_path
(
group
)
end
...
...
config/locales/en.yml
View file @
c8611fb2
...
...
@@ -2,7 +2,6 @@
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en
:
<<<<<<< HEAD
hello
:
"
Hello
world"
activerecord
:
attributes
:
...
...
@@ -15,8 +14,6 @@ en:
wrong_size
:
"
is
the
wrong
size
(should
be
%{file_size})"
size_too_small
:
"
is
too
small
(should
be
at
least
%{file_size})"
size_too_big
:
"
is
too
big
(should
be
at
most
%{file_size})"
=======
>
>>>>>>
bf57a7e80c44080dc7ec0fd774148afdae29cc31
views
:
pagination
:
previous
:
"
Prev"
...
...
spec/features/boards/boards_spec.rb
View file @
c8611fb2
...
...
@@ -538,11 +538,7 @@ describe 'Issue Boards', feature: true, js: true do
context
'signed out user'
do
before
do
gitlab_sign_out
<<<<<<<
HEAD
visit
namespace_project_boards_path
(
project
.
namespace
,
project
)
=======
visit
namespace_project_board_path
(
project
.
namespace
,
project
,
board
)
>>>>>>>
bf57a7e80c44080dc7ec0fd774148afdae29cc31
wait_for_requests
end
...
...
@@ -566,11 +562,7 @@ describe 'Issue Boards', feature: true, js: true do
project
.
team
<<
[
user_guest
,
:guest
]
gitlab_sign_out
gitlab_sign_in
(
user_guest
)
<<<<<<<
HEAD
visit
namespace_project_boards_path
(
project
.
namespace
,
project
)
=======
visit
namespace_project_board_path
(
project
.
namespace
,
project
,
board
)
>>>>>>>
bf57a7e80c44080dc7ec0fd774148afdae29cc31
wait_for_requests
end
...
...
spec/features/commits_spec.rb
View file @
c8611fb2
...
...
@@ -8,11 +8,7 @@ describe 'Commits' do
describe
'CI'
do
before
do
<<<<<<<
HEAD
gitlab_sign_in
:user
=======
sign_in
(
user
)
>>>>>>>
bf57a7e80c44080dc7ec0fd774148afdae29cc31
stub_ci_pipeline_to_return_yaml_file
end
...
...
@@ -195,11 +191,7 @@ describe 'Commits' do
before
do
project
.
team
<<
[
user
,
:master
]
<<<<<<<
HEAD
gitlab_sign_in
(
user
)
=======
sign_in
(
user
)
>>>>>>>
bf57a7e80c44080dc7ec0fd774148afdae29cc31
visit
namespace_project_commits_path
(
project
.
namespace
,
project
,
branch_name
)
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