Ling Li
Ling Li
@avelis : would it be possible to schedule a release? If you are snowed, I would gladly help as my fix #142 has not yet been released. Thanks in advance.
@avelis : more than happy to help. If you can set me up with (maintainer) rights to publish, I can take a look in the next day or so, I...
@avelis on pypi you are setup as a maintainer of drf-tracking: https://pypi.org/project/drf-tracking/ I think you should be able to add me from there.
@aschn : could you kindly help to add me as maintainer to assist with the upkeep of this project?
@avelis : could you kindly permission me to deploy onto pypi? If not may I suggest that we fork this project+rename so that a new version could be published on...
@avelis : ok so I have forked the repo and renamed as follows: https://github.com/lingster/drf-api-tracking. Currently in the process of getting all the CI working so it can be ready to...
@avelis : I have completed the fork and there is a new version 1.6.0 of drf-api-tracking which contains all changes so far. Could you kindly update the README and point...
@avelis : thanks very much! And I guess we can close this issue now!
@johnraz / @robmoorman : I'm interested in amending the Form so rather than saving the form data in a TextField, it's stored in JSONField format. Looking at the code it...
@ababic : indeed this is roughly what I have tried: ``` class MyPageForm(WagtailAdminModelForm): def clean(self): # my custom code class MyForm(AbstractForm): base_form_class = MyPageForm def __init__(self): .... @modeladmin_register class MyFormModelAdmin(FormModelAdmin):...