gitlab-org--gitlab-foss/app/controllers/admin/hook_logs_controller.rb

30 lines
549 B
Ruby
Raw Normal View History

class Admin::HookLogsController < Admin::ApplicationController
include HooksExecution
before_action :hook, only: [:show, :retry]
before_action :hook_log, only: [:show, :retry]
respond_to :html
def show
end
def retry
2017-07-20 15:12:06 +00:00
result = hook.execute(hook_log.request_data, hook_log.trigger)
2017-07-20 15:12:06 +00:00
set_hook_execution_notice(result)
redirect_to edit_admin_hook_path(@hook)
end
private
def hook
@hook ||= SystemHook.find(params[:hook_id])
end
def hook_log
@hook_log ||= hook.web_hook_logs.find(params[:id])
end
end