Files
FreshRSS/app/Models
Alexandre Alapetite ffd1061850 User query automatic reconstruct of URL (#4360)
* User query automatic reconstruct of URL
(Invisible through the Web UI, only when working with configuration files manually)
Avoid the requirement of storing user queries with duplicated information (parsed parameters AND the resulting URL):

Before:
```
[
	'name' => 'Hello',
	'search' => 'Hello OR World',
	'state' => '3',
	'url' => './?search=Hello+OR+World&state=3',
]
```

After:

```
[
	'name' => 'Hello',
	'search' => 'Hello OR World',
	'state' => '3',
]
```

* Fix test
2022-05-15 21:53:13 +02:00
..
2022-01-04 13:59:09 +01:00
2022-01-08 21:58:55 +01:00
2022-05-13 23:14:09 +02:00
2022-01-30 15:53:17 +01:00
2014-10-05 18:51:08 +02:00
2022-01-04 13:59:09 +01:00
2022-03-21 12:51:03 +01:00
2015-03-05 13:29:41 +01:00
2022-01-04 13:59:09 +01:00
2022-01-04 13:59:09 +01:00
2022-01-02 18:19:40 +01:00