mirror of
https://github.com/aluxnimm/outlookcaldavsynchronizer.git
synced 2026-04-25 11:05:56 +03:00
[GH-ISSUE #4] 'Privacy' is not synced #904
Labels
No labels
1.0
1.0
1.0
2.0
Feature
Feature request
Google
Google Calendar
async
attachement
auto-migrated
auto-migrated
auto-migrated
bug
critical
enhancement
help wanted
implemented
pull-request
solved
solved
sourceforge
sourceforge
sourceforge
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/outlookcaldavsynchronizer#904
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @aluxnimm on GitHub (Feb 24, 2015).
Original GitHub issue: https://github.com/aluxnimm/outlookcaldavsynchronizer/issues/4
Originally assigned to: @aluxnimm on GitHub.
Original comment by: nertsch
Original Ticket: outlookcaldavsynchronizer/2
@aluxnimm commented on GitHub (Feb 24, 2015):
Original comment by: nertsch
@aluxnimm commented on GitHub (Mar 26, 2015):
code snippets for testing:
target.Class = MapPrivacy1To2(source.Sensitivity);
private string MapPrivacy1To2(OlSensitivity value)
{
switch (value)
{
case OlSensitivity.olPrivate:
return "PRIVATE";
case OlSensitivity.olConfidential:
return "CONFIDENTIAL";
case OlSensitivity.olNormal:
return "PUBLIC";
case OlSensitivity.olPersonal:
return "PRIVATE"; // not sure
}
target.Sensitivity = MapPrivacy2To1(source.Class);
private OlSensitivity MapPrivacy2To1(string value)
{
switch (value)
{
case "PRIVATE":
return OlSensitivity.olPrivate;
case "CONFIDENTIAL":
return OlSensitivity.olConfidential;
case "PUBLIC":
return OlSensitivity.olNormal;
Original comment by: aluxnimm
@aluxnimm commented on GitHub (Mar 27, 2015):
Original comment by: nertsch