debian-mirror-gitlab/app/presenters/project_hook_presenter.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
302 B
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
class ProjectHookPresenter < Gitlab::View::Presenter::Delegated
2022-08-27 11:52:29 +05:30
presents ::ProjectHook
2020-01-01 13:55:28 +05:30
def logs_details_path(log)
project_hook_hook_log_path(project, self, log)
end
def logs_retry_path(log)
retry_project_hook_hook_log_path(project, self, log)
end
end