NAME
CPAN::Testers::Schema::Result::MetabaseUser - Legacy user information from the Metabase
VERSION
version 0.027
SYNOPSIS
my $rs = $schema->resultset( 'MetabaseUser' );
my ( $row ) = $rs->search({ resource => $resource })->all;
say $row->fullname;
say $row->email;
DESCRIPTION
This table stores the Metabase users so we can look up their name and e-mail when they send in reports.
ATTRIBUTES
id
The ID of the row in the database.
resource
The Metabase GUID of the user. We use this to look the user up. Will be a UUID prefixed with metabase:user:
.
fullname
The full name of the user.
The e-mail address of the user.
SEE ALSO
AUTHORS
Oriol Soriano <oriolsoriano@gmail.com>
Doug Bell <preaction@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by Oriol Soriano, Doug Bell.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.