2017-09-10 17:25:29 +05:30
|
|
|
module Ci
|
|
|
|
class GroupVariablePresenter < Gitlab::View::Presenter::Delegated
|
|
|
|
presents :variable
|
|
|
|
|
|
|
|
def placeholder
|
|
|
|
'GROUP_VARIABLE'
|
|
|
|
end
|
|
|
|
|
|
|
|
def form_path
|
2018-03-17 18:26:18 +05:30
|
|
|
group_settings_ci_cd_path(group)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def edit_path
|
2018-03-17 18:26:18 +05:30
|
|
|
group_variables_path(group)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def delete_path
|
2018-03-17 18:26:18 +05:30
|
|
|
group_variables_path(group)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|