meateam / api-gateway

api gateway
Apache License 2.0
10 stars 4 forks source link

feature/pagination - V3.0.0 #212

Closed Shahar-Y closed 3 years ago

Shahar-Y commented 3 years ago

Added pagination BREAKING because changed GetSharedFiles return value! Must be pushed with: https://github.com/meateam/permission-service/pull/10

instead of files array, it now returns:

type GetSharedFilesResponse struct {
    Files     []*GetFileByIDResponse `json:"files,omitempty"`
    PageNum   int64                  `json:"pageNum"`
    ItemCount int64                  `json:"itemCount"`
}

must be pushed after https://github.com/meateam/permission-service/pull/10