The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Web::JenkinsNotification -

SYNOPSIS

use Web::JenkinsNotification;

builder {
    mount "/jenkins" => builder {
        enable "+Web::JenkinsNotification";
        sub { 
            my $env = shift;
            my $notification = $env->{ 'jenkins.notification' };  # Jenkins::Notification

        };
    };

    mount "/jenkins" => Web::JenkinsNotification->new({ on_notify => sub {
        my ($env,$payload) = @_;
        
    }})->to_app;
};

DESCRIPTION

Web::JenkinsNotification is

AUTHOR

Yo-An Lin <cornelius.howl {at} gmail.com>

SEE ALSO

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.