Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hook_logs_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a283d3abb0b2d6381f53a7f068a0132964d8be68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Admin
  class HookLogsController < Admin::ApplicationController
    include WebHooks::HookLogActions

    private

    def hook
      @hook ||= SystemHook.find(params[:hook_id])
    end

    def after_retry_redirect_path
      edit_admin_hook_path(hook)
    end
  end
end