Simon

Results 247 comments of Simon

This would suggest that you have become an view only user, see latest release notes for that. Validation expects your user to be in the admin group, to allow you...

The docs here gives example for `AUTH_LDAP_USER_FLAGS_BY_GROUP` to map to django's `is_superuser`, this also suggests that you still need the `ModelBackend` too? https://github.com/django-auth-ldap/django-auth-ldap#example-configuration

I was stuck at the same place before. As the application is setup now, this needs a working redis connection before any manage.py command can run. Last time I research...

v0.4.8 fixes that problem, now running pytest, with already a few tests. please help with extending that.

OK, sorry I'm a bit slow at the moment. Plan is: - Finish #620 and merge that - Then finish and merge the scheduler modifications (around 90% completed now) here...

Thanks for your patience. I've made good progress with the scheduler migration. Please rebase upstream testing branch, then we can look into this next.

OK, if you are still up for this, there is a short window of opportunity. I want to refactor things soon to get started on the new frontend, maybe in...

Yes, feel free to reopen. You'll have to merge testing branch into your branch and resolve the conflicts.

Thinking here was, that same functionality can be used for indexing new videos *and* reindexing existing videos and refresh the comments. The call to ES is to catch cases where...

```python if not self.comments_format and es_comments["comment_comments"]: # don't overwrite comments in es return ``` You can still have the case where there aren't any formatted comments e.g. `not self.comments_format` **and**...