2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 16:53:20 -05:00
|
|
|
module ApplicationHelper
|
2016-03-12 13:46:06 -05:00
|
|
|
def active_nav_class(path)
|
|
|
|
current_page?(path) ? 'active' : ''
|
|
|
|
end
|
2016-12-01 10:26:25 -05:00
|
|
|
|
2016-12-04 06:58:35 -05:00
|
|
|
def s3_expiry
|
|
|
|
Time.zone.now.beginning_of_day.since 25.hours
|
2016-12-01 10:26:25 -05:00
|
|
|
end
|
2016-02-20 16:53:20 -05:00
|
|
|
end
|