73322a0e55
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
20 lines
545 B
Ruby
20 lines
545 B
Ruby
# frozen_string_literal: true
|
|
|
|
module HooksExecution
|
|
extend ActiveSupport::Concern
|
|
|
|
private
|
|
|
|
def set_hook_execution_notice(result)
|
|
http_status = result[:http_status]
|
|
message = result[:message]
|
|
|
|
if http_status && http_status >= 200 && http_status < 400
|
|
flash[:notice] = "Hook executed successfully: HTTP #{http_status}"
|
|
elsif http_status
|
|
flash[:alert] = "Hook executed successfully but returned HTTP #{http_status} #{message}"
|
|
else
|
|
flash[:alert] = "Hook execution failed: #{message}"
|
|
end
|
|
end
|
|
end
|