mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
8 lines
162 B
Ruby
8 lines
162 B
Ruby
# frozen_string_literal: true
|
|
|
|
class WebhookHmacController < ApplicationController
|
|
load_and_authorize_resource :webhook_url, parent: false
|
|
|
|
def show; end
|
|
end
|