You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
As a Confluence Admin,
Are there ways to see all created Team Calendar?
I would like to be able to manage these calendars. . . see who created them, their creation dates, last updated, total number of entries, # of subsriptions, # of macro embeds, # of My Calendar embeds, etc. . .
Just looking for ways to have some management capabilities to these team calendars.
Thanks!
We are tracking this feature request here: https://jira.atlassian.com/browse/TEAMCAL-1134
Thanks and we look forward to this new feature!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you could mark this thread as answered, that would be great.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do it via database, just modify the below query to your needs. I believe that after you have a list of all your team calendar creators, you can educate the users to manage their own calendar, and after with report you can check if this is really happening or now.
SELECT u.username, c.NAME, c.SPACE_KEY FROM [confluence].[dbo].[user_mapping] u,
[confluence].[dbo].[AO_950DC3_TC_SUBCALS] c
WHERE u.user_key = c.CREATOR and c.PARENT_ID is NULL and c.SUBSCRIPTION_ID is NULL;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just checked myself and couldn't find anything. Would be interested to see something like this as well - plus 1 on your question Khanh!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.