1
0

fix(migration): remove unused todoist parameters

This commit is contained in:
kolaente
2023-01-24 18:44:33 +01:00
parent 6a87d919fa
commit c59e006453
2 changed files with 19 additions and 31 deletions

View File

@ -124,7 +124,6 @@ type fileAttachment struct {
type note struct {
ID string `json:"id"`
PostedUID int64 `json:"posted_uid"`
ProjectID string `json:"project_id"`
ItemID string `json:"item_id"`
Content string `json:"content"`
@ -139,7 +138,6 @@ type projectNote struct {
ID int64 `json:"id"`
IsDeleted int64 `json:"is_deleted"`
Posted time.Time `json:"posted"`
PostedUID int64 `json:"posted_uid"`
ProjectID string `json:"project_id"`
UidsToNotify []int64 `json:"uids_to_notify"`
}