mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 12:34:32 +00:00
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
|