module AudiosHelper

Public Instance Methods

duration_column(record) click to toggle source
# File app/helpers/audios_helper.rb, line 7
def duration_column(record)
  seconds_to_time(record.duration)
end
start_column(record) click to toggle source
# File app/helpers/audios_helper.rb, line 3
def start_column(record)
  seconds_to_time(record.start)
end