2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProjectHookPresenter < Gitlab::View::Presenter::Delegated
|
2021-11-18 22:05:49 +05:30
|
|
|
presents ::ProjectHook, as: :project_hook
|
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
|