snippets_helper.rb 518 字节
Newer Older
G
gitlabhq 已提交
1
module SnippetsHelper
N
Nihad Abbasov 已提交
2 3 4 5 6 7 8 9 10
  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
G
gitlabhq 已提交
11
end