You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
374 B
20 lines
374 B
# 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
|