mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
a2871cd747
* Add administrative webhooks * Fix error when webhook is deleted before delivery worker runs
20 lines
374 B
Ruby
20 lines
374 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class Webhooks::SecretsController < BaseController
|
|
before_action :set_webhook
|
|
|
|
def rotate
|
|
authorize @webhook, :rotate_secret?
|
|
@webhook.rotate_secret!
|
|
redirect_to admin_webhook_path(@webhook)
|
|
end
|
|
|
|
private
|
|
|
|
def set_webhook
|
|
@webhook = Webhook.find(params[:webhook_id])
|
|
end
|
|
end
|
|
end
|