Skip to content

Commit

Permalink
corrige la modif de bourrin par une autre modif de bourrin
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphaël Squelbut committed Sep 20, 2023
1 parent 752e11b commit fc2db37
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions activities.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ import (
type ActivityID string
type Activity struct {
ID ActivityID `bson:"_id" json:"_id,omitempty"`
UserID UserID `bson:"userId,omitempty" json:"userId,omitempty,omitempty"`
Username Username `bson:"username,omitempty" json:"username,omitempty,omitempty"`
Type string `bson:"type,omitempty" json:"type,omitempty,omitempty"`
MemberID UserID `bson:"memberId,omitempty" json:"memberId,omitempty,omitempty"`
ActivityType string `bson:"activityType,omitempty" json:"activityType,omitempty,omitempty"`
ActivityTypeID string `bson:"activityTypeID,omitempty" json:"activityTypeID,omitempty,omitempty"`
BoardID BoardID `bson:"boardId,omitempty" json:"boardId,omitempty,omitempty"`
BoardLabelID BoardLabelID `bson:"labelId,omitEmpty" json:"labelId,omitEmpty,omitempty"`
CardTitle string `bson:"cardTitle,omitempty" json:"cardTitle,omitempty,omitempty"`
ListID ListID `bson:"listId,omitempty" json:"listId,omitempty,omitempty"`
ListName string `bson:"listName,omitempty" json:"listName,omitempty,omitempty"`
CardID CardID `bson:"cardId,omitempty" json:"cardId,omitempty,omitempty"`
UserID UserID `bson:"userId,omitempty" json:"userId,omitempty"`
Username Username `bson:"username,omitempty" json:"username,omitempty"`
Type string `bson:"type,omitempty" json:"type,omitempty"`
MemberID UserID `bson:"memberId,omitempty" json:"memberId,omitempty"`
ActivityType string `bson:"activityType,omitempty" json:"activityType,omitempty"`
ActivityTypeID string `bson:"activityTypeID,omitempty" json:"activityTypeID,omitempty"`
BoardID BoardID `bson:"boardId,omitempty" json:"boardId,omitempty"`
BoardLabelID BoardLabelID `bson:"labelId,omitEmpty" json:"labelId,omitempty"`
CardTitle string `bson:"cardTitle,omitempty" json:"cardTitle,omitempty"`
ListID ListID `bson:"listId,omitempty" json:"listId,omitempty"`
ListName string `bson:"listName,omitempty" json:"listName,omitempty"`
CardID CardID `bson:"cardId,omitempty" json:"cardId,omitempty"`
CommentID CommentID `bson:"commentId, omitempty"`
SwimlaneID SwimlaneID `bson:"swimlaneID,omitempty" json:"swimlaneID,omitempty,omitempty"`
SwimlaneName string `bson:"swimlaneName,omitempty" json:"swimlaneName,omitempty,omitempty"`
SwimlaneID SwimlaneID `bson:"swimlaneID,omitempty" json:"swimlaneID,omitempty"`
SwimlaneName string `bson:"swimlaneName,omitempty" json:"swimlaneName,omitempty"`
CreatedAt time.Time `bson:"createdAt" json:"createdAt,omitempty"`
ModifiedAt time.Time `bson:"modifiedAt" json:"modifiedAt,omitempty"`
}
Expand Down
2 changes: 1 addition & 1 deletion cards.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ type Card struct {
SwimlaneID SwimlaneID `bson:"swimlaneId" json:"swimlaneId,omitempty"`
Type string `bson:"type" json:"type,omitempty"`
Archived bool `bson:"archived" json:"archived,omitempty"`
ParentID CardID `bson:"parentId,omitempty" json:"parentId,omitempty,omitempty"`
ParentID CardID `bson:"parentId,omitempty" json:"parentId,omitempty"`
CoverID string `bson:"coverId" json:"coverId,omitempty"`
CreatedAt time.Time `bson:"createdAt" json:"createdAt,omitempty"`
ModifiedAt time.Time `bson:"modifiedAt" json:"modifiedAt,omitempty"`
Expand Down

0 comments on commit fc2db37

Please sign in to comment.