Christopher

Results 8 comments of Christopher

After testing, as of the current version (6.2.8) this issue appears to fixed.

Yes, customizing auth routes and/or the registration controller can all be done manually in your code base.

Sure thing, here's a simple version of the classes: ```CSharp public class Person : BaseModel { [Key] public int Id { get; set; } [ForeignKey(nameof(Residence))] public int? ResidenceSystemID { get;...

Thanks for looking into this. You are correct I am in .NET 6 with EPPlus 7.0.2. I seem to be getting inconsistent results on my end. Based on the feedback...

I really like the simplicity of how Laravel handles [models to json serialization](https://laravel.com/docs/9.x/eloquent-serialization#relationships). For Django models that could look something like: ```python class Model(): class Meta: serialized_fields = ('id', 'value_field',...

So it sounds like we will seemingly always want to use a serializer library or convert the models to dictionaries ourselves. Maybe that could be stated in the inertia-django doc...

I've personally switched to the `DjangoJsonEncoder`, and here is the serialization approach I've gone with: ```python class CustomModel(Model): # ... objects = BaseQuerySet.as_manager() def serialize(self, *relations) -> dict: data =...

> TypeError: (0, J5. isBuiltin) is not a function Node. js v18.0.0 Thanks that helped identify the problem, I updated node to the latest `22.8.0` and is now working again....