BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
be22bf5c
Commit
be22bf5c
authored
Aug 14, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rs-remove-username-from-sanitize-attrs' into 'master'
Remove `username` from `User#sanitize_attrs` callback See merge request !13511
parents
d1e1139e
64073185
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
user.rb
app/models/user.rb
+3
-3
No files found.
app/models/user.rb
View file @
be22bf5c
...
...
@@ -726,9 +726,9 @@ class User < ActiveRecord::Base
end
def
sanitize_attrs
%
w[username
skype linkedin twitter]
.
each
do
|
attr
|
value
=
public_send
(
attr
)
# rubocop:disable GitlabSecurity/PublicSend
public_send
(
"
#{
attr
}
="
,
Sanitize
.
clean
(
value
))
if
value
.
present?
# rubocop:disable GitlabSecurity/PublicSend
%
i[
skype linkedin twitter]
.
each
do
|
attr
|
value
=
self
[
attr
]
self
[
attr
]
=
Sanitize
.
clean
(
value
)
if
value
.
present?
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