Files
fizzy/app/controllers/webhooks/activations_controller.rb
T
2025-11-17 09:12:41 -05:00

11 lines
227 B
Ruby

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