gitlab-org--gitlab-foss/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

# frozen_string_literal: true
class ProjectHookPresenter < Gitlab::View::Presenter::Delegated
presents ::ProjectHook
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