Files
nairobi/config
Javi Martín 2e863fdc51 Fix OR condition in public taggings
In SQL, conditions like:

```
tag_id IN (x) AND taggable_type='Debate' OR taggable_type='Proposal'
```

Don't work as intended; we need to write:

```
tag_id IN (x) AND (taggable_type='Debate' OR taggable_type='Proposal')
```

Due to this bug, we were returning taggings for proposals without
intending to do so.

Since the code was very hard to read, we're also simplifying it.
2022-03-21 20:43:50 +01:00
..
2021-09-24 13:39:15 +02:00
2019-04-16 17:28:06 +02:00
2021-09-24 13:39:15 +02:00
2019-04-16 17:28:06 +02:00
2020-12-23 13:18:10 +01:00