django-requestlogs icon indicating copy to clipboard operation
django-requestlogs copied to clipboard

django-requestlogs is a package providing middleware and other helpers for audit logging.

Results 6 django-requestlogs issues
Sort by recently updated
recently updated
newest added

What do you all think about having a install procedure like: `pip install django-requestlogs[ipware]` which installs the optional dependency. The project would still maintain the default way of installing `pip...

good first issue

Since the output is for a log (display only), would it make better sense to change "IntegerField" to "CharField" in (storages.py)? class UserSerializer(serializers.Serializer): id = serializers.IntegerField() username = serializers.CharField()

I used custom MyEntrySerializer by extending BaseEntrySerializer bcz I was getting issue before (AttributeError: Got AttributeError when attempting to get a value for field `user` on serializer `BaseEntrySerializer`. The serializer...

With swagger enabled, the [data property of ResponseHandler gets called](https://github.com/Raekkeri/django-requestlogs/blob/master/requestlogs/entries.py#L58) when attempting to visit the generated documentation. However in this case, the `data` is actually a `Swagger` object, that is...

bug

I have ViewSet with drf @action ``` class SomeView(BaseViewSet): requestlogs_action_names = { 'list': "Receiving", "some_action": "some event has occurred", } ... @action( methods=["get"], detail=True, url_path="some-action", url_name="some-action", ) def some_action(self, request,...