Does Google (and others) see shares with public link? Sure when using direct link in topics or somewhere else but are those blocked or added in the sitemap?
And because editing or deleting will be done via PM how can I as an admin delete that sharing if actual PM conversation is deleted? Do I first search somehow it from deleted ones, take it back in live and then killing share or is there easier way?
(That was situation when this feature was published and I haven’t even checked if it is changed later, nasty me)
Deleting a message does not nuke the share at the moment. I am torn on this one.
To work around and find all these orphans you can use this data explorer query:
SELECT
shared_ai_conversations.*
FROM
shared_ai_conversations
JOIN
topics ON shared_ai_conversations.target_id = topics.id AND shared_ai_conversations.target_type = 'Topic'
WHERE
topics.deleted_at IS NOT NULL