Authorization에 Create Time 추가 #2

Merged
mklee merged 1 commits from ds into master 2025-08-19 00:22:56 +09:00
Showing only changes of commit d00aaae839 - Show all commits

View File

@ -17,9 +17,10 @@ type Authorization struct {
invalidated string
// by authorization provider
Platform string `bson:"p" json:"p"`
Uid string `bson:"u" json:"u"`
Alias string `bson:"al" json:"al"`
Platform string `bson:"p" json:"p"`
Uid string `bson:"u" json:"u"`
Alias string `bson:"al" json:"al"`
CreatedTime primitive.DateTime `bson:"ct" json:"ct"`
}
func (auth *Authorization) ToStrings() []string {