All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ui.static.topic.management.missingTopicBulkCreationOnClusters.js Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
$(document).ready(function () {
    $("#bulk-create-where-missing-btn").click(bulkCreateWhereMissingTopics);
});

function bulkCreateWhereMissingTopics() {
    let topicName = $(this).attr("data-topic-name");
    performBulkOperations(
        "Topic creation", "missing-topic", "POST",
        "api/management/create-missing-topic",
        "topicName", topicName,
        "clusterIdentifier", "data-cluster-identifier"
    );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy