NAME

Dancer::Plugin::Authorize::Permissions - Dancer::Plugin::Authorize Permissions base class and guide!

VERSION

version 1.110720

SYNOPSIS

package Dancer::Plugin::Authorize::Permissions::MyPermissionsClass;
use base 'Dancer::Plugin::Authorize::Permissions';

# every permissions class must have subject_asa and subject_can routines
# the following defines a custom routine for checking the user's role

sub subject_asa {
    my ($self, $options, @arguments) = @_;
    my $role = shift @arguments;
    ...
}

1;

DESCRIPTION

The Dancer::Plugin::Authorize::Permissions class should be used as a base class in your custom role-based acess control/permissions classes. When used as a base class, this class provides instantiation and simple error handling for your classes.

AUTHOR

Al Newkirk <awncorp@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by awncorp.

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