caldav::calendars proc alwaysQueriedCalendars (public)

 caldav::calendars[i] alwaysQueriedCalendars \
    [ -with_sync_calendar on|off ] user_id

Defined in packages/xotcl-core/tcl/01-debug-procs.tcl

Switches:
-with_sync_calendar (optional, boolean, defaults to "true")
Parameters:
user_id (required, integer)
Returns:
the calendar_ids, which should be always returned

Testcases:
No testcase defined.
Source code:
#
# @return the calendar_ids, which should be always returned
#
lappend calendar_ids {*}[::caldav::get_public_calendars]
if {$with_sync_calendar} {
    lappend calendar_ids [::caldav::get_sync_calendar -user_id $user_id]
}
return $calendar_ids
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: