mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-24 17:44:50 +00:00
20 lines
494 B
Ruby
20 lines
494 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::Fasp::Debug::CallbacksController < Admin::BaseController
|
|
def index
|
|
authorize [:admin, :fasp, :provider], :update?
|
|
|
|
@callbacks = Fasp::DebugCallback
|
|
.includes(:fasp_provider)
|
|
.order(created_at: :desc)
|
|
end
|
|
|
|
def destroy
|
|
authorize [:admin, :fasp, :provider], :update?
|
|
|
|
callback = Fasp::DebugCallback.find(params[:id])
|
|
callback.destroy
|
|
|
|
redirect_to admin_fasp_debug_callbacks_path
|
|
end
|
|
end
|