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
f71e48a0
Commit
f71e48a0
authored
Dec 11, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts in app/models/user.rb
parent
0f811675
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
27 deletions
+7
-27
app/models/user.rb
app/models/user.rb
+7
-27
No files found.
app/models/user.rb
View file @
f71e48a0
...
...
@@ -315,13 +315,8 @@ class User < ActiveRecord::Base
#
# Returns an ActiveRecord::Relation.
def
search
(
query
)
<<<<<<<
HEAD
=======
table
=
arel_table
query
=
query
.
downcase
pattern
=
User
.
to_pattern
(
query
)
>>>>>>>
f45fc58d84
...
Merge
branch
'bvl-10-2-email-disclosure'
into
'security-10-2'
order
=
<<~
SQL
CASE
WHEN users.name = %{query} THEN 0
...
...
@@ -331,16 +326,11 @@ class User < ActiveRecord::Base
END
SQL
<<<<<<<
HEAD
fuzzy_search
(
query
,
[
:name
,
:email
,
:username
])
.
reorder
(
order
%
{
query:
ActiveRecord
::
Base
.
connection
.
quote
(
query
)
},
:name
)
=======
where
(
table
[
:name
].
matches
(
pattern
)
.
or
(
table
[
:email
].
eq
(
query
))
.
or
(
table
[
:username
].
matches
(
pattern
))
fuzzy_arel_match
(
:name
,
query
)
.
or
(
fuzzy_arel_match
(
:username
,
query
))
.
or
(
arel_table
[
:email
].
eq
(
query
))
).
reorder
(
order
%
{
query:
ActiveRecord
::
Base
.
connection
.
quote
(
query
)
},
:name
)
>>>>>>>
f45fc58d84
...
Merge
branch
'bvl-10-2-email-disclosure'
into
'security-10-2'
end
# searches user by given pattern
...
...
@@ -348,28 +338,18 @@ class User < ActiveRecord::Base
# This method uses ILIKE on PostgreSQL and LIKE on MySQL.
def
search_with_secondary_emails
(
query
)
query
=
query
.
downcase
email_table
=
Email
.
arel_table
<<<<<<<
HEAD
matched_by_emails_user_ids
=
email_table
.
project
(
email_table
[
:user_id
])
.
where
(
Email
.
fuzzy_arel_match
(
:email
,
query
))
.
where
(
email_table
[
:email
].
eq
(
query
))
where
(
fuzzy_arel_match
(
:name
,
query
)
.
or
(
fuzzy_arel_match
(
:email
,
query
))
.
or
(
fuzzy_arel_match
(
:username
,
query
))
.
or
(
arel_table
[
:email
].
eq
(
query
))
.
or
(
arel_table
[
:id
].
in
(
matched_by_emails_user_ids
))
=======
query
=
query
.
downcase
pattern
=
User
.
to_pattern
(
query
)
matched_by_emails_user_ids
=
email_table
.
project
(
email_table
[
:user_id
]).
where
(
email_table
[
:email
].
eq
(
query
))
where
(
table
[
:name
].
matches
(
pattern
)
.
or
(
table
[
:email
].
eq
(
query
))
.
or
(
table
[
:username
].
matches
(
pattern
))
.
or
(
table
[
:id
].
in
(
matched_by_emails_user_ids
))
>>>>>>>
f45fc58d84
...
Merge
branch
'bvl-10-2-email-disclosure'
into
'security-10-2'
)
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