v0.10.16 - Various fixes

This commit is contained in:
frederikpyt
2020-08-31 09:36:10 +02:00
parent d8a754d398
commit c6c54996b5
19 changed files with 55 additions and 68 deletions
@@ -15,8 +15,7 @@ class ContactController extends Controller
$this->middleware([ "auth" ]);
$this->middleware([ "lang" ]);
$this->middleware([ "check.auth:contact.list" ])->only("index");
$this->middleware([ "check.auth:contact.show" ])->only("show");
$this->middleware([ "check.auth:contact.show" ])->only("show", "index");
$this->middleware([ "check.auth:contact.create" ])->only("create", "store");
$this->middleware([ "check.auth:contact.edit" ])->only("edit", "update");
$this->middleware([ "check.auth:contact.delete" ])->only("delete");