Let's say you have a multi-tenant environment in Umbraco:
- Site A
- Site B
Both sites want a "learning center" full of articles and other content.
- Site A
- Learning Center
- Site B
- Learning Center
But they don't want to start from scratch, so we want a global learning center, too:
- Learning Center
- Site A
- Learning Center
- Site B
- Learning Center
What is the best practice/approach so that content in the global learning center is mirrored in Site A and Site B?
I've considered writing a content finder that would first find the site by its culture and hostname, then take the remaining portion starting at "/learning-center," and, I guess, query the published content for something matching that URL.
Edit: One more thing complicating this is that Sites A and B may or may not have protection. So, before forwarding them to the content, I need to make sure that the currently signed-in member has access. I suppose that's possible to do from a content finder.