Files
gitlab-foss/app/presenters/service_hook_presenter.rb
2022-08-17 12:13:49 +00:00

14 lines
372 B
Ruby

# frozen_string_literal: true
class ServiceHookPresenter < Gitlab::View::Presenter::Delegated
presents ::ServiceHook
def logs_details_path(log)
project_settings_integration_hook_log_path(integration.project, integration, log)
end
def logs_retry_path(log)
retry_project_settings_integration_hook_log_path(integration.project, integration, log)
end
end