modified: SRC/app/Http/Controllers/GameController.php

modified:   SRC/app/Http/routes.php
	modified:   SRC/app/Models/User.php
This commit is contained in:
Malibu
2015-03-10 16:10:52 +01:00
parent 12a0a618a6
commit b9202d2070
3 changed files with 11 additions and 0 deletions
SRC/app

@ -15,6 +15,7 @@
Route::get('/', 'GameController@index');
Route::get('referents/{id}/games', 'GameController@showReferentGames')->where('id', '^((?!login|referent|admin).)*$');
Route::get('referents/{id}/games/{idGame}', 'GameController@showOneReferentGame');
Route::get('searchRef/{reg}', 'GameController@findReferents');
Route::get('password/reset/{token}', array(
'uses' => 'LoginController@reset',