Skip to content
Snippets Groups Projects
Manager.pm 298 B
package IdPAccountManager::AuthenticationToken::Manager;

use strict;
use warnings;

use base qw(Rose::DB::Object::Manager);

use IdPAccountManager::AuthenticationToken;

sub object_class { 'IdPAccountManager::AuthenticationToken' }

__PACKAGE__->make_manager_methods('authenticationtokens');

1;