Artem Hruzd

Results 44 comments of Artem Hruzd

Can we merge this PR ?

I archived this by adding options output to description like: ``` class MySchema(SwaggerAutoSchema): def get_summary_and_description(self): summary, description = super().get_summary_and_description() description += self.view.options(self.request) return summary, description ```

What usb device are you using ? You should use bRequest, bmRequestType according to your usb device specs

> I am trying to understand better how the IOKit for USB works but it is very hard to find documentation (I am trying to send a custom data packet...

@Dog this will not work in case of complex permission logic like: ``` (IsAdminUserOrSuperUserPermission | (IsAuthenticated & ~permissions.BuilderCompanyMemberPermission),) ``` We need to check both methods to make it work as...