thedevdojo / chatter

Chatter is a Simple Laravel Forum Package
https://devdojo.com/forums
MIT License
898 stars 294 forks source link

How to restrict discussion creation using middleware #204

Closed alizaidi606 closed 6 years ago

alizaidi606 commented 6 years ago

I want to restrict discussion creation to specific user groups like admin I changed it in middleware section of configuration but it didn't work may be there is something I am doing wrong please guid, also how do I hide create discussion option from forum 'discussion' => [ 'index' => [], 'show' => [], 'create' => ['admin'], 'store' => [], 'destroy' => ['admin'], 'edit' => [], 'update' => [], ],

alizaidi606 commented 6 years ago

I realized what I was doing wrong after had to add middleware in front of store as well