0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Fixed wrong default filter for default collection

refs #9601

- while i was testing different collections and different filters, i somehow thought that the default
  collection does not contain featured posts 😀 🙊
- this is wrong (!!!!)
- the url service is not yet connected
- so: this is not a bug
This commit is contained in:
kirrg001 2018-04-25 16:17:31 +02:00
parent 02abe3862e
commit 2a1be3729d

View file

@ -131,10 +131,7 @@ const collection1 = new Collection({
value: '/{settings.permalinks}/'
},
config: {
type: 'posts',
options: {
filter: 'featured:false'
}
type: 'posts'
}
});