aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/App/Controller/Tokens.pm
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2011-06-08 13:51:17 +0100
committerMatthew Somerville <matthew@mysociety.org>2011-06-08 13:51:17 +0100
commit500190d03fcbfd8993f46b61bca9e12a7339dbc2 (patch)
tree3398fbde51e5ef35040b6d9611cb2eabd618071d /perllib/FixMyStreet/App/Controller/Tokens.pm
parente19d63897578e31cf40cc185a663cebd8edb9c14 (diff)
Switch to using c->cobrand->problems to return all problems for a cobrand (so on Barnet only return Barnet problems).
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Tokens.pm')
-rw-r--r--perllib/FixMyStreet/App/Controller/Tokens.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Tokens.pm b/perllib/FixMyStreet/App/Controller/Tokens.pm
index 92a44e756..c75fcc9ee 100644
--- a/perllib/FixMyStreet/App/Controller/Tokens.pm
+++ b/perllib/FixMyStreet/App/Controller/Tokens.pm
@@ -33,7 +33,7 @@ sub confirm_problem : Path('/P') {
# Load the problem
my $problem_id = $auth_token->data;
- my $problem = $c->model('DB::Problem')->find( { id => $problem_id } )
+ my $problem = $c->cobrand->problems->find( { id => $problem_id } )
|| $c->detach('token_error');
$c->stash->{problem} = $problem;