mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Hexadecimal color changed to capital letters
The default colors in event_types and difficulty levels are in capital letters and the ones that comes from the color picker were not. Now colors are capitalized before saving the track, level or type. A rake task has also been created to capitalize color from old tracks, levels or types.
This commit is contained in:
parent
0deaf1abc7
commit
8d9bb56f06
11 changed files with 72 additions and 15 deletions
|
|
@ -3,5 +3,13 @@ class DifficultyLevel < ActiveRecord::Base
|
|||
has_many :events, dependent: :nullify
|
||||
|
||||
validates :title, presence: true
|
||||
validates :color, format: /\A#[0-9a-fA-F]{6}\z/
|
||||
validates :color, format: /\A#[0-9A-F]{6}\z/
|
||||
|
||||
before_validation :capitalize_color
|
||||
|
||||
private
|
||||
|
||||
def capitalize_color
|
||||
self.color = color.upcase if color.present?
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue