Compare commits

...

2 Commits

Author SHA1 Message Date
bb3a7fc957 Merge pull request 'Authorization에 Create Time 추가' (#2) from ds into master
Reviewed-on: #2
2025-08-19 00:22:54 +09:00
d00aaae839 Authorization에 Create Time 추가 2025-08-19 00:20:31 +09:00

View File

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