mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 07:40:12 +01:00
6 lines
156 B
Ruby
6 lines
156 B
Ruby
|
|
class DateUtils
|
||
|
|
def self.midnight_for(prefs, date)
|
||
|
|
ActiveSupport::TimeZone[prefs.time_zone].local(date.year, date.month, date.day, 0, 0, 0)
|
||
|
|
end
|
||
|
|
end
|