提交 32811d98 编写于 作者: F Felipe Artur

Make model sanitization methods one liners

上级 d028863e
......@@ -10,6 +10,7 @@ v 8.8.0 (unreleased)
- Add 'l' shortcut to open Label dropdown on issuables and 'i' to create new issue on a project
- Updated search UI
- Display informative message when new milestone is created
- Sanitize milestones and labels titles
- Allow "NEWS" and "CHANGES" as alternative names for CHANGELOG. !3768 (Connor Shea)
- Added button to toggle whitespaces changes on diff view
- Backport GitLab Enterprise support from EE
......
......@@ -117,9 +117,8 @@ class Label < ActiveRecord::Base
LabelsHelper::text_color_for_bg(self.color)
end
def title= value
value = Sanitize.clean(value.to_s) if value
write_attribute(:title, Sanitize.clean(value))
def title=(value)
write_attribute(:title, Sanitize.clean(value.to_s)) if value.present?
end
private
......
......@@ -129,9 +129,8 @@ class Milestone < ActiveRecord::Base
nil
end
def title= value
value = Sanitize.clean(value.to_s) if value
write_attribute(:title, value)
def title=(value)
write_attribute(:title, Sanitize.clean(value.to_s)) if value.present?
end
# Sorts the issues for the given IDs.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册