All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
12 lines
195 B
Ruby
12 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Helpers - view helper functions
|
|
module Helpers
|
|
|
|
def date_format(date)
|
|
dt = date.to_datetime
|
|
return dt.strftime('%B %d, %Y @ %I:%M:%S %p %Z')
|
|
end
|
|
|
|
end
|