Skip to content

Commit

Permalink
Bbashy patch 1 (#2)
Browse files Browse the repository at this point in the history
* redirect /

* redirect /

* don't remove sqlite database for build test
  • Loading branch information
bbashy authored Sep 14, 2017
1 parent 7cedbd1 commit fae19db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class LoginController extends Controller
*
* @var string
*/
protected $redirectTo = '/home';
protected $redirectTo = '/';

/**
* Create a new controller instance.
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/ResetPasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ResetPasswordController extends Controller
*
* @var string
*/
protected $redirectTo = '/home';
protected $redirectTo = '/';

/**
* Create a new controller instance.
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ echo >&2 "${CYAN}PHPUnit${NC}"
vendor/bin/phpunit

# Remove DB
rm database/database.sqlite
#rm database/database.sqlite

trap : 0

Expand Down

0 comments on commit fae19db

Please sign in to comment.