Tapes are now Clips, also they have categories

This commit is contained in:
Roscoe 2025-09-10 03:08:27 +01:00
commit c8732b6332
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
41 changed files with 347 additions and 148 deletions

View file

@ -0,0 +1,2 @@
module CategoriesHelper
end

View file

@ -0,0 +1,9 @@
module ClipsHelper
def seconds_to_time(seconds)
if seconds >= 3600 then
Time.at(seconds.round).utc.strftime("%H:%M:%S") #=> "01:00:00"
else
Time.at(seconds.round).utc.strftime("%M:%S") #=> "01:00:00"
end
end
end

View file

@ -1,2 +0,0 @@
module TapesHelper
end