mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-19 08:40:12 +01:00
37 lines
768 B
Ruby
37 lines
768 B
Ruby
class Preference < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :sms_context, :class_name => 'Context'
|
|
|
|
def self.due_styles
|
|
{ :due_in_n_days => 0, :due_on => 1}
|
|
end
|
|
|
|
def self.day_number_to_name_map
|
|
{ 0 => "Sunday",
|
|
1 => "Monday",
|
|
2 => "Tuesday",
|
|
3 => "Wednesday",
|
|
4 => "Thursday",
|
|
5 => "Friday",
|
|
6 => "Saturday"}
|
|
end
|
|
|
|
def hide_completed_actions?
|
|
return show_number_completed == 0
|
|
end
|
|
|
|
def parse_date(s)
|
|
return nil if s.blank?
|
|
date = nil
|
|
|
|
if s.is_a?(Time)
|
|
date = s.in_time_zone(time_zone).to_date
|
|
elsif s.is_a?(String)
|
|
date = Date.strptime(s, date_format)
|
|
else
|
|
raise ArgumentError.new("Bad argument type:#{s.class}")
|
|
end
|
|
|
|
user.at_midnight(date)
|
|
end
|
|
end
|