gitlab-org--gitlab-foss/app/presenters/ci/group_variable_presenter.rb
gfyoung d5bf57a6af Enable frozen string in presenters and policies
Enable frozen string in:

* app/presenters
* app/policies

Partially addresses #47424.
2018-07-24 13:18:25 -07:00

23 lines
384 B
Ruby

# frozen_string_literal: true
module Ci
class GroupVariablePresenter < Gitlab::View::Presenter::Delegated
presents :variable
def placeholder
'GROUP_VARIABLE'
end
def form_path
group_settings_ci_cd_path(group)
end
def edit_path
group_variables_path(group)
end
def delete_path
group_variables_path(group)
end
end
end