mastodon/app/models/concerns/fasp/provider/debug_concern.rb
2025-03-28 12:16:40 +00:00

10 lines
239 B
Ruby

# frozen_string_literal: true
module Fasp::Provider::DebugConcern
extend ActiveSupport::Concern
def perform_debug_call
Fasp::Request.new(self)
.post('/debug/v0/callback/logs', body: { hello: 'world' })
end
end