Commit c8611fb2 authored by Valery Sizov's avatar Valery Sizov

Resolve some of the conflicts[co skip]

parent 1688d7d0
...@@ -4,14 +4,11 @@ class MergeRequest < ActiveRecord::Base ...@@ -4,14 +4,11 @@ class MergeRequest < ActiveRecord::Base
include Noteable include Noteable
include Referable include Referable
include Sortable include Sortable
<<<<<<< HEAD
include Elastic::MergeRequestsSearch include Elastic::MergeRequestsSearch
include Approvable include Approvable
=======
include IgnorableColumn include IgnorableColumn
ignore_column :position ignore_column :position
>>>>>>> bf57a7e80c44080dc7ec0fd774148afdae29cc31
belongs_to :target_project, class_name: "Project" belongs_to :target_project, class_name: "Project"
belongs_to :source_project, class_name: "Project" belongs_to :source_project, class_name: "Project"
......
...@@ -10,11 +10,7 @@ class GroupEntity < Grape::Entity ...@@ -10,11 +10,7 @@ class GroupEntity < Grape::Entity
expose :parent_id expose :parent_id
expose :created_at, :updated_at expose :created_at, :updated_at
<<<<<<< HEAD
expose :web_url do |group|
=======
expose :group_path do |group| expose :group_path do |group|
>>>>>>> bf57a7e80c44080dc7ec0fd774148afdae29cc31
group_path(group) group_path(group)
end end
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en: en:
<<<<<<< HEAD
hello: "Hello world" hello: "Hello world"
activerecord: activerecord:
attributes: attributes:
...@@ -15,8 +14,6 @@ en: ...@@ -15,8 +14,6 @@ en:
wrong_size: "is the wrong size (should be %{file_size})" wrong_size: "is the wrong size (should be %{file_size})"
size_too_small: "is too small (should be at least %{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})" size_too_big: "is too big (should be at most %{file_size})"
=======
>>>>>>> bf57a7e80c44080dc7ec0fd774148afdae29cc31
views: views:
pagination: pagination:
previous: "Prev" previous: "Prev"
......
...@@ -538,11 +538,7 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -538,11 +538,7 @@ describe 'Issue Boards', feature: true, js: true do
context 'signed out user' do context 'signed out user' do
before do before do
gitlab_sign_out gitlab_sign_out
<<<<<<< HEAD
visit namespace_project_boards_path(project.namespace, project) visit namespace_project_boards_path(project.namespace, project)
=======
visit namespace_project_board_path(project.namespace, project, board)
>>>>>>> bf57a7e80c44080dc7ec0fd774148afdae29cc31
wait_for_requests wait_for_requests
end end
...@@ -566,11 +562,7 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -566,11 +562,7 @@ describe 'Issue Boards', feature: true, js: true do
project.team << [user_guest, :guest] project.team << [user_guest, :guest]
gitlab_sign_out gitlab_sign_out
gitlab_sign_in(user_guest) gitlab_sign_in(user_guest)
<<<<<<< HEAD
visit namespace_project_boards_path(project.namespace, project) visit namespace_project_boards_path(project.namespace, project)
=======
visit namespace_project_board_path(project.namespace, project, board)
>>>>>>> bf57a7e80c44080dc7ec0fd774148afdae29cc31
wait_for_requests wait_for_requests
end end
......
...@@ -8,11 +8,7 @@ describe 'Commits' do ...@@ -8,11 +8,7 @@ describe 'Commits' do
describe 'CI' do describe 'CI' do
before do before do
<<<<<<< HEAD
gitlab_sign_in :user
=======
sign_in(user) sign_in(user)
>>>>>>> bf57a7e80c44080dc7ec0fd774148afdae29cc31
stub_ci_pipeline_to_return_yaml_file stub_ci_pipeline_to_return_yaml_file
end end
...@@ -195,11 +191,7 @@ describe 'Commits' do ...@@ -195,11 +191,7 @@ describe 'Commits' do
before do before do
project.team << [user, :master] project.team << [user, :master]
<<<<<<< HEAD
gitlab_sign_in(user)
=======
sign_in(user) sign_in(user)
>>>>>>> bf57a7e80c44080dc7ec0fd774148afdae29cc31
visit namespace_project_commits_path(project.namespace, project, branch_name) visit namespace_project_commits_path(project.namespace, project, branch_name)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment