Skip to content

Commit

Permalink
Allowed anonymous access to controller actions
Browse files Browse the repository at this point in the history
Updated to v3.0.1
  • Loading branch information
Chad Crowell committed Nov 8, 2019
1 parent b704740 commit e9815f5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## 3.0.1 - 2019-11-08
### Fixed
- Allowed anonymous access to controller actions

## 3.0.0 - 2019-11-07
### Added
- Initial release
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "swishdigital/db-dump",
"description": "A simple way to perform database backups in Craft CMS 3.",
"type": "craft-plugin",
"version": "3.0.0",
"version": "3.0.1",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/DefaultController.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class DefaultController extends Controller
* @access protected
*/

protected $allowAnonymous = ['action-index'];
protected $allowAnonymous = true;



Expand Down

0 comments on commit e9815f5

Please sign in to comment.