Vojtěch Jelínek
Vojtěch Jelínek
## Overview 1. This PR fixes or fixes part of #N/A. 2. This PR does the following: Add exploration migration job and also add new schema version that fixes issues...
## Overview 1. This PR fixes or fixes part of N/A 2. This PR does the following: Removes usages of `$.ajax` from the codebase and fixes remaining comments from #15816....
The goal of this issue is to enable some pylint rules that we disabled while doing the Python 3 migration. **Steps to follow to create a PR:** 1. Ask @seanlip...
When you open a list of translation suggestions to review, then click the "Next >" button. Then if you open a translation to review and subsequently close it, the list...
All the constants that are available in _constants.ts_ can also be imported through _app.constants.ts_, I think we should prefer and enforce the second approach everywhere to make the codebase more...
Right now, the audit migration jobs are basically a copy of the normal migration jobs, this is not ideal as it can lead to skew. We should integrate them together...
TL;DR: Remove the usage of `get_by_id(id)` from our codebase and replace it with `get(id, strict=False)` and replace `query(…)` with `get_all(…)`. In our codebase we sometimes use `get_by_id(some_id)` (which is an...
Currently, we do model → domain (and vice versa) transformations in the services, we want to move them into models and return domain objects from models directly.
In #14006, we add a `TranslationContributionStatsModel` that was missed before and not included in wipeout found a way how to mitigate this in the future.
Right now we generate separate versions of CSS files for RTL from the normal LTR versions in the webpack process (and soon in the Angular build too). This creates multiple...