diff --git a/docs/docs.go b/docs/docs.go index 675c765..3c5affb 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -1996,6 +1996,9 @@ const docTemplate = `{ "data.EventIndexDoc": { "type": "object", "properties": { + "checkin_count": { + "type": "integer" + }, "description": { "type": "string" }, @@ -2005,6 +2008,9 @@ const docTemplate = `{ "event_id": { "type": "string" }, + "join_count": { + "type": "integer" + }, "name": { "type": "string" }, diff --git a/docs/swagger.json b/docs/swagger.json index 6ea1a2e..e9a9496 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -1994,6 +1994,9 @@ "data.EventIndexDoc": { "type": "object", "properties": { + "checkin_count": { + "type": "integer" + }, "description": { "type": "string" }, @@ -2003,6 +2006,9 @@ "event_id": { "type": "string" }, + "join_count": { + "type": "integer" + }, "name": { "type": "string" }, diff --git a/docs/swagger.yaml b/docs/swagger.yaml index 4ffc5a6..5404d74 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -2,12 +2,16 @@ basePath: /api/v1 definitions: data.EventIndexDoc: properties: + checkin_count: + type: integer description: type: string end_time: type: string event_id: type: string + join_count: + type: integer name: type: string start_time: