This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Schema/ResultSet/Organisation.pm

11 lines
186 B
Perl
Raw Normal View History

package Pear::LocalLoop::Schema::ResultSet::Organisation;
use strict;
use warnings;
use base 'DBIx::Class::ResultSet';
2021-03-20 15:02:00 +00:00
sub entity { return shift->search_related( 'entity', @_ ) }
1;