Files
docuseal/app/controllers/testing_api_settings_controller.rb
2024-11-02 22:12:41 +02:00

12 lines
271 B
Ruby

# frozen_string_literal: true
class TestingApiSettingsController < ApplicationController
def index
authorize!(:manage, current_user.access_token)
@webhook_url = current_account.webhook_urls.first_or_initialize
authorize!(:manage, @webhook_url)
end
end