MM-45168 GraphQL: add fields to Team (#20610)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
0f21cfcd52
Коммит
7bbf30d6bc
@@ -269,10 +269,18 @@ func (o *Team) ShallowCopy() *Team {
|
||||
// so we have to pass the data in float64. The _ at the end is
|
||||
// a hack to keep the attribute name same in GraphQL schema.
|
||||
|
||||
func (o *Team) CreateAt_() float64 {
|
||||
return float64(o.UpdateAt)
|
||||
}
|
||||
|
||||
func (o *Team) UpdateAt_() float64 {
|
||||
return float64(o.UpdateAt)
|
||||
}
|
||||
|
||||
func (o *Team) DeleteAt_() float64 {
|
||||
return float64(o.DeleteAt)
|
||||
}
|
||||
|
||||
func (o *Team) LastTeamIconUpdate_() float64 {
|
||||
return float64(o.LastTeamIconUpdate)
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user