Sha256: a198ae676e28c17dbbb31ea020703109857f386c5e87066a885fe0cd0d520a4b
Contents?: true
Size: 314 Bytes
Versions: 19
Compression:
Stored size: 314 Bytes
Contents
class ApiKeyController < ActionController::Base protect_from_forgery def environment Bugsnag.notify("handled string") render json: {} end def changing Bugsnag.configure do |conf| conf.api_key = params[:api_key] end Bugsnag.notify("handled string") render json: {} end end
Version data entries
19 entries across 12 versions & 1 rubygems