- [ ] limit crud controller methods ```ts @Taon.CrudController( ... allowOnlyMethods: ['getPayments'], ... class UserController() { // to access whole controller authorize() { } } ``` - [ ] ??? methods only for user in specyfic group or with permission ```ts @Taon.Http.Method.GET() getPaymentInfo() { if(this.sessionUser.isAuthorized('to-something')) { } } ```