Skip to content

Commit

Permalink
Merge pull request #5 from dotkernel/develop
Browse files Browse the repository at this point in the history
removed default routes option values
  • Loading branch information
n3vrax authored Mar 19, 2017
2 parents 6bc006f + 8c1b5a5 commit 9fc8ee9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.2.1 - 2017-03-19

### Changed
* Nothing

### Added
* Nothing

### Deprecated
* Nothing

### Removed
* default routes option values

### Fixed
* Nothing


## 0.2.0 - 2017-03-15

Updating package to support ZE2 and other DotKernel dependencies updates
Expand Down
8 changes: 4 additions & 4 deletions src/Options/WebAuthenticationOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
class WebAuthenticationOptions extends AbstractOptions
{
/** @var string|array */
protected $loginRoute = ['route_name' => 'login'];
protected $loginRoute = [];

/** @var string|array */
protected $logoutRoute = ['route_name' => 'logout'];
protected $logoutRoute = [];

/** @var string|array */
protected $afterLoginRoute = ['route_name' => 'home'];
protected $afterLoginRoute = [];

/** @var string|array */
protected $afterLogoutRoute = ['route_name' => 'login'];
protected $afterLogoutRoute = [];

/** @var string */
protected $loginTemplate = '';
Expand Down

0 comments on commit 9fc8ee9

Please sign in to comment.