-
Notifications
You must be signed in to change notification settings - Fork 530
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit add new fields described in #6590 to the model and adapts the ContactEditor and ContactViewer to handle the new fields.
- Loading branch information
1 parent
d0830fc
commit eb9c06d
Showing
64 changed files
with
2,436 additions
and
673 deletions.
There are no files selected for viewing
756 changes: 303 additions & 453 deletions
756
app-android/app/src/main/java/de/tutao/tutanota/AndroidMobileContactsFacade.kt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
app-android/app/src/main/java/de/tutao/tutanota/generated_ipc/ContactCustomDateType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* generated file, don't edit. */ | ||
|
||
|
||
package de.tutao.tutanota.ipc | ||
typealias ContactCustomDateType = de.tutao.tutanota.contacts.ContactCustomDateType |
5 changes: 5 additions & 0 deletions
5
app-android/app/src/main/java/de/tutao/tutanota/generated_ipc/ContactMessengerHandleType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* generated file, don't edit. */ | ||
|
||
|
||
package de.tutao.tutanota.ipc | ||
typealias ContactMessengerHandleType = de.tutao.tutanota.contacts.ContactMessengerHandleType |
5 changes: 5 additions & 0 deletions
5
app-android/app/src/main/java/de/tutao/tutanota/generated_ipc/ContactRelationshipType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* generated file, don't edit. */ | ||
|
||
|
||
package de.tutao.tutanota.ipc | ||
typealias ContactRelationshipType = de.tutao.tutanota.contacts.ContactRelationshipType |
5 changes: 5 additions & 0 deletions
5
app-android/app/src/main/java/de/tutao/tutanota/generated_ipc/ContactWebsiteType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* generated file, don't edit. */ | ||
|
||
|
||
package de.tutao.tutanota.ipc | ||
typealias ContactWebsiteType = de.tutao.tutanota.contacts.ContactWebsiteType |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
app-android/app/src/main/java/de/tutao/tutanota/generated_ipc/StructuredCustomDate.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated file, don't edit. */ | ||
|
||
|
||
package de.tutao.tutanota.ipc | ||
|
||
import kotlinx.serialization.* | ||
import kotlinx.serialization.json.* | ||
|
||
|
||
@Serializable | ||
data class StructuredCustomDate( | ||
val dateIso: String, | ||
val type: ContactCustomDateType, | ||
val customTypeName: String, | ||
) |
15 changes: 15 additions & 0 deletions
15
app-android/app/src/main/java/de/tutao/tutanota/generated_ipc/StructuredMessengerHandle.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated file, don't edit. */ | ||
|
||
|
||
package de.tutao.tutanota.ipc | ||
|
||
import kotlinx.serialization.* | ||
import kotlinx.serialization.json.* | ||
|
||
|
||
@Serializable | ||
data class StructuredMessengerHandle( | ||
val handle: String, | ||
val type: ContactMessengerHandleType, | ||
val customTypeName: String, | ||
) |
Oops, something went wrong.