I have two sites:
'default' => [
'name' => 'Deutsch',
'locale' => 'de_DE',
'url' => '/',
],
'english' => [
'name' => 'Englisch',
'locale' => 'en_US',
'url' => '/en/',
]
Both sites have access to the same collection: "sessions". Is there a way to get all entries of a collection no matter on what site they were created?
{{ collection:sessions }}
only works for the current site as it seems.
Will I have to create a custom Tag/Controller?