diff options
author | Matthew Somerville <matthew@mysociety.org> | 2015-09-11 12:51:11 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2015-09-17 11:13:34 +0100 |
commit | 450ee47f68caa8725e8866c879d9fabd3529c1a8 (patch) | |
tree | cdd14e43af795aa374039051ea4c743d3c8d4986 /perllib/FixMyStreet/App/Controller/Auth.pm | |
parent | 9bebe5261a3aee29c55e5e3d0bcf4c8dd561537b (diff) |
Add way to see "Please check your email" pages.
This makes testing easier.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Auth.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Auth.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Auth.pm b/perllib/FixMyStreet/App/Controller/Auth.pm index 63bf91ff5..53ef13462 100644 --- a/perllib/FixMyStreet/App/Controller/Auth.pm +++ b/perllib/FixMyStreet/App/Controller/Auth.pm @@ -46,6 +46,11 @@ sub general : Path : Args(0) { } +sub general_test : Path('_test_') : Args(0) { + my ( $self, $c ) = @_; + $c->stash->{template} = 'auth/token.html'; +} + =head2 sign_in Allow the user to sign in with a username and a password. |