Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snippets_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd7b03593c86eae45ea45ab6b435107f804e1669 (plain)
1
2
3
4
5
6
7
8
9
10
11
module SnippetsHelper
  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
end