debian-mirror-gitlab/app/presenters/ci/variable_presenter.rb

26 lines
476 B
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
module Ci
class VariablePresenter < Gitlab::View::Presenter::Delegated
presents :variable
def placeholder
'PROJECT_VARIABLE'
end
def form_path
if variable.persisted?
project_variable_path(project, variable)
else
project_variables_path(project)
end
end
def edit_path
project_variable_path(project, variable)
end
def delete_path
project_variable_path(project, variable)
end
end
end