gitlabhq/app/helpers/snippets_helper.rb

12 lines
518 B
Ruby
Raw Normal View History

2011-10-16 23:07:10 +02:00
module SnippetsHelper
2011-10-27 08:46:21 +02:00
def snippet_lifetime_select_options
options = [
['forever', nil],
['1 day', Date.strptime("#{Date.current.day}.#{Date.current.month}.#{Date.current.year}", "%d.%m.%Y") + 1.day],
['1 week', Date.strptime("#{Date.current.day}.#{Date.current.month}.#{Date.current.year}", "%d.%m.%Y") + 1.week],
['1 month', Date.strptime("#{Date.current.day}.#{Date.current.month}.#{Date.current.year}", "%d.%m.%Y") + 1.month]
]
options_for_select(options)
end
2011-10-16 23:07:10 +02:00
end