Who uses the calendar plugin?

Hello,

is there a way to see which user are using the calendar plugin or which user has ever used tha plugin?

Regards

Daniel

Hello Daniel,

well I don’t know a way to do this from the web interface, but you can have some clues with the database.
Connect to your MySQL database and do this query

select principaluri from oc_calendars where principaluri like '%/users/%' group by principaluri;

It will list all users having at least one calendar.

2 Likes