mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-25 03:04:51 +00:00
11 lines
239 B
Ruby
11 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
|