Paul Lan

Results 4 comments of Paul Lan

Unfortunately, the `menurc` file in `~/Library/Application Support/GIMP/2.10` (macOS) doesn't work. It will be overridden every time you restart your GIMP.

It happens to me too. It's fixed in the commit https://github.com/apollographql/fullstack-tutorial/pull/202, but still waiting for merge. BTW, I am somehow surprised Apollographql allows compilation error checkins to master branch.

Here is my solution: ```python from rest_framework_jwt.authentication import JSONWebTokenAuthentication class PrivateGraphQLView(GraphQLView): """Adds a login requirement to graphQL API access via main endpoint.""" def dispatch(self, request, *args, **kwargs): print(request.body) body_str =...