Dancer2::Core::HTTP(3) helper for rendering HTTP status codes for Dancer2

VERSION

version 0.200002

FUNCTIONS

status(status_code)

    Dancer2::Core::HTTP->status(200); # returns 200
    Dancer2::Core::HTTP->status('Not Found'); # returns 404
    Dancer2::Core::HTTP->status('bad_request'); # 400

Returns a HTTP status code. If given an integer, it will return the value it received, else it will try to find the appropriate alias and return the correct status.

status_message(status_code)

    Dancer2::Core::HTTP->status_message(200); # returns 'OK'
    Dancer2::Core::HTTP->status_message('error'); # returns 'Internal Server Error'

Returns the HTTP status message for the given status code.

AUTHOR

Dancer Core Developers

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Alexis Sukrieh.

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