Unverified Commit ea40d493 authored by Simon Esposito's avatar Simon Esposito Committed by GitHub
Browse files

Add runtime group listing function (#627)

Improve group listing filtering options.
parent 20a55b5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// 	protoc-gen-go v1.26.0
// 	protoc        v3.15.8
// 	protoc        v3.17.3
// source: apigrpc.proto

package apigrpc
+27 −0
Original line number Diff line number Diff line
@@ -9,6 +9,11 @@
      "email": "hello@heroiclabs.com"
    }
  },
  "tags": [
    {
      "name": "Nakama"
    }
  ],
  "host": "127.0.0.1:7350",
  "schemes": [
    "http"
@@ -1604,6 +1609,21 @@
            "required": false,
            "type": "string"
          },
          {
            "name": "langTag",
            "description": "Language tag filter.",
            "in": "query",
            "required": false,
            "type": "string"
          },
          {
            "name": "members",
            "description": "Number of group members.",
            "in": "query",
            "required": false,
            "type": "integer",
            "format": "int32"
          },
          {
            "name": "cursor",
            "description": "Optional pagination cursor.",
@@ -1618,6 +1638,13 @@
            "required": false,
            "type": "integer",
            "format": "int32"
          },
          {
            "name": "open",
            "description": "Optional Open/Closed filter.",
            "in": "query",
            "required": false,
            "type": "boolean"
          }
        ],
        "tags": [
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// 	protoc-gen-go v1.26.0
// 	protoc        v3.15.8
// 	protoc        v3.17.3
// source: console.proto

package console
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ require (
	github.com/gorilla/mux v1.8.0
	github.com/gorilla/websocket v1.4.2
	github.com/grpc-ecosystem/grpc-gateway/v2 v2.3.0
	github.com/heroiclabs/nakama-common v1.14.0
	github.com/heroiclabs/nakama-common v1.14.1-0.20210617185418-157deb0c1978
	github.com/jackc/pgconn v1.8.1
	github.com/jackc/pgerrcode v0.0.0-20201024163028-a0d42d470451
	github.com/jackc/pgtype v1.7.0
+2 −0
Loading