This commit is contained in:
BoHung Chiu 2021-03-08 19:36:46 +08:00
parent dce4cac9bc
commit aff1807a35
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ module Admin::PluginTemplatesHelper
end
def time_iterate(start_time, end_time, step, &block)
begin
start_time = start_time.to_date if end_time.class == Date
yield(start_time)
end while (start_time += step) <= end_time
end