MM-45168 GraphQL: add fields to Team (#20610)

Этот коммит содержится в:
Tim Scheuermann
2022-07-11 16:05:09 +03:00
коммит произвёл GitHub
родитель 0f21cfcd52
Коммит 7bbf30d6bc
3 изменённых файлов: 33 добавлений и 2 удалений

Просмотреть файл

@@ -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)
}