Batch fetch projects api calls and updated changelog
This commit is contained in:
parent
c24cf0f443
commit
aa825e5aae
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
## 0.0.6 - 2023-08-03
|
||||||
|
|
||||||
|
### Features
|
||||||
|
* Add project datasource
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
* Added identities and jobs datasources usage examples
|
||||||
|
* Batch FetchProjects api calls
|
||||||
|
|
||||||
## 0.0.5 - 2023-07-31
|
## 0.0.5 - 2023-07-31
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
2
external/evcli/client.go
vendored
2
external/evcli/client.go
vendored
|
@ -112,7 +112,7 @@ func (c *Client) SendRequest(method string, relURI *url.URL, body, dest interfac
|
||||||
func (c *Client) FetchProjects() (eventline.Projects, error) {
|
func (c *Client) FetchProjects() (eventline.Projects, error) {
|
||||||
var projects eventline.Projects
|
var projects eventline.Projects
|
||||||
|
|
||||||
cursor := eventline.Cursor{Size: 1}
|
cursor := eventline.Cursor{Size: 20}
|
||||||
|
|
||||||
for {
|
for {
|
||||||
var page ProjectPage
|
var page ProjectPage
|
||||||
|
|
Loading…
Add table
Reference in a new issue