package Mojolicious::Plugin::CORS; use Mojo::Base 'Mojolicious::Plugin'; sub register { my ( $self, $app, $opts ) = @_; CORS: { $app->hook( before_dispatch => sub { my $c = shift; $c->res->headers->header( 'Access-Control-Allow-Origin' => '*' ); $c->res->headers->header( 'Access-Control-Allow-Methods' => 'GET, PUT, POST, DELETE, OPTIONS' ); $c->res->headers->header( 'Access-Control-Max-Age' => 3600 ); $c->res->headers->header( 'Access-Control-Allow-Headers' => 'Content-Type, Authorization, X-Requested-With' ); } ); }; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Mojolicious::Plugin::CORS =head1 VERSION version 0.02 =head1 SYNOPSIS package App; use Mojo::Base 'Mojolicious'; sub startup { my $self = shift; $self->plugin( 'Mojolicious::Plugin::CORS' ); } =for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan =head1 SUPPORT =head2 Bugs / Feature Requests Please report any bugs or feature requests through the issue tracker at L. You will be notified automatically of any progress on your issue. =head2 Source Code This is open source software. The code repository is available for public review and contribution under the terms of the license. L git clone git://github.com/sharabash/mojolicious-plugin-cors.git =head1 AUTHOR Nour Sharabash =head1 CONTRIBUTOR Nour Sharabash =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2014 by Nour Sharabash. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut