# frozen_string_literal: true module OpenRecycling module Org class Webhooks < OpenRecycling::Resource def initialize(base_url: nil, jwt_token: nil) super( root_node_singular: "webhook", root_node_plural: "webhooks", api_url: "#{base_url}/webhooks", jwt_token: jwt_token ) end end end end