Files
fizzy/app/controllers/webhooks/activations_controller.rb
T
2025-11-03 15:00:15 +01:00

11 lines
210 B
Ruby

class Webhooks::ActivationsController < ApplicationController
before_action :ensure_admin
def create
webhook = Webhook.find(params[:webhook_id])
webhook.activate
redirect_to webhook
end
end