1
0
mirror of https://gitlab.com/depesz/explain.depesz.com.git synced 2025-07-15 01:34:18 +02:00

Users almost done

Functionality is there, I'm just waiting for Metys to help me with styling
This commit is contained in:
Hubert depesz Lubaczewski
2013-10-29 14:35:04 +01:00
parent 9ba0cc07cc
commit b381985e43
7 changed files with 257 additions and 5 deletions

View File

@ -32,6 +32,12 @@ sub startup {
# route: 'index'
$routes->route( '/' )->to( 'controller#index' )->name( 'new-explain' );
# route: 'user-history'
$routes->route( '/user-history/:direction/:key' )->to( 'controller#user_history', direction => undef, key => undef )->name( 'user-history' );
# route: 'plan-change'
$routes->route( '/plan-change/:id' )->to( 'controller#plan_change' )->name( 'plan-change' );
# route: 'login'
$routes->route( '/login' )->to( 'controller#login' )->name( 'login' );