Sync calendar feature
Allow the new calendar feature to sync with google or outlook calendar, so that archivists can share the reading room calendar more easily with fellow staff.
-
Anne Marie Lyons commented
University of Washington would also like this feature. In the meantime, they also asked for the ability to export an Outlook calendar file from the activity record on the staff client side. They would like for the following details to be in the export: lass title, staff person associated, and any notes added. And mentioned the following:
Powershell example of what I’d be looking for:
# Create a new Outlook application object
$outlook = New-Object -ComObject Outlook.Application# Get the MAPI namespace
$namespace = $outlook.GetNamespace("MAPI")# Access the Calendar folder
$calendar = $namespace.GetDefaultFolder([Microsoft.Office.Interop.Outlook.OlDefaultFolders]::olFolderCalendar)# Create a new appointment item in the Calendar
$appointment = $calendar.Items.Add(1) # 1 denotes an appointment item# Set properties for the appointment
$appointment.Subject = "Team Meeting"
$appointment.Start = [datetime]"2024-09-04 09:00"
$appointment.End = [datetime]"2024-09-04 10:00"
$appointment.Body = "Discuss project milestones."