mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 22:18:06 +01:00
11 lines
226 B
Ruby
11 lines
226 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin::AnnouncementsHelper
|
|
def datetime_pattern
|
|
'[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}(:[0-9]{2}){1,2}'
|
|
end
|
|
|
|
def datetime_placeholder
|
|
Time.zone.now.strftime('%FT%R')
|
|
end
|
|
end
|