My Personal Collection Link?

Hello! I am on the self-hosted open source version of Metabase, running the latest update (at the time of this post).

I have created some dashboards for my users based on their specific KPIs--and moved them into their personal collections. I would like to send out an email saying click here to view your dashboard, and it take them to their specific personal collection, but I can't seem to find if there is a main link that will redirect to my personal collection.

Does such a link exist, or will I need to walk them through how to use the side panel to view their own personal collection?

There's a keyboard shortcut that takes you to your personal collection:
g then p

You could create a default dashboard for the home page with instructions. Plenty of space for BIG BLOCK CAPITALS!

Only alternative is to use the collection table in the metabase database. It has the users' collection:

SELECT co.id, name, personal_owner_id, slug, cu.email
	FROM public.collection co
	inner join public.core_user cu on co.personal_owner_id = cu.id

Then the address would be:
https://server-name/collection/<co.id>

1 Like