blob: 4719c7a2455380966cba113b2afa5824e780986a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package FixMyStreet::DB::ResultSet::Comment;
use base 'DBIx::Class::ResultSet';
use strict;
use warnings;
sub timeline {
my ( $rs, $restriction ) = @_;
my $prefetch =
FixMyStreet::App->model('DB')->schema->storage->sql_maker->quote_char ?
[ qw/user/ ] :
[];
return $rs->search(
{
state => 'confirmed',
created => { '>=', \"ms_current_timestamp()-'7 days'::interval" },
%{ $restriction },
},
{
prefetch => $prefetch,
}
);
}
1;
|