Maksudul Haque

Results 51 comments of Maksudul Haque

Hey, @nmt77, you have to create account types from django admin panel, then it will appear in the registration form.

Hi @nguyentanhungbk, Thanks for creating the issue. Currently, changelog-ci does not support this functionality. I am planning to add a feature like this when I get some free time. Feel...

I actually prefer this way, but what you said totally makes sense. :) Need to look into it.

I think you can make use of `.extra()` method for this purpose: ```python Search(index="contributions").query(some_query).extra( boosts={ "clickscore": { "type": "functional", "function": "linear", "operation": "add", "factor": 2 } } ) ``` ref:...

You can use the `Q` shortcut to construct query using a raw `dict` as well. For Example: ```python # Construct a dictionary with users input field and data some_input =...

@KunstDerFuge Thanks for reporting the issue. Directly using the objects list returned by the `bulk_create()` can cause this issue. From Django's (`bulk_create()`) Documentation: > If the model’s primary key is...

After a little bit of research, I have found that if we use `ignore_conflicts=True` with `bulk_create()` it does not set the `pk` to the returned objects. That's why this is...

Looks like there is a similar PR https://github.com/django-es/django-elasticsearch-dsl/pull/284 that does this as a part of it but has been stale for a long time

> @saadmk11 Let me know if anything needs to be changed! Hi @oehrlein, Thanks for updating the PR with the requested changes. :100: I tried to test these changes locally...

> I took your suggestion regarding the `_matches` function and added it in [ce05715](https://github.com/django-es/django-elasticsearch-dsl/commit/ce057156354ba63b823cc5eb9fb01dd0125704a5). While I understand that having multiple, similarly-named indices will cause matching issues, I think that's less...