Remove unused admin/announcements helper (#23899)

lolsob-rspec
Matt Jankowski 2023-02-28 05:56:50 -05:00 committed by GitHub
parent 1d248c3f57
commit 9cf4671ba1
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
# frozen_string_literal: true
module Admin::AnnouncementsHelper
def time_range(announcement)
if announcement.all_day?
safe_join([l(announcement.starts_at.to_date), ' - ', l(announcement.ends_at.to_date)])
else
safe_join([l(announcement.starts_at), ' - ', l(announcement.ends_at)])
end
end
end