1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00
unleash.unleash/src
Gastón Fournier 75c15e5cac
fix: proper aggregation of strategies (#4456)
## About the changes
Open API is creating 2 resources under the same URL path, we want them
aggregated:
```shell
$ curl -s https://us.app.unleash-hosted.com/ushosted/docs/openapi.json | jq '.paths."/api/admin/strategies/{name}" | keys'
[
  "delete",
  "get"
]
gaston@gaston-Summit-E16Flip-A12UCT: ~/poc/terraform-provider-unleash on main [!$]
$ curl -s https://us.app.unleash-hosted.com/ushosted/docs/openapi.json | jq '.paths."/api/admin/strategies/{strategyName}" | keys'
[
  "put"
]
```

Note one is under `{name}` while the other is under `{strategyName}`
2023-08-09 13:07:17 +00:00
..
lib fix: proper aggregation of strategies (#4456) 2023-08-09 13:07:17 +00:00
mailtemplates
migrations Feat: last seen in feature environment (#4391) 2023-08-04 09:59:54 +03:00
test fix: deletion validation didnt account for groups (#4441) 2023-08-08 13:45:19 +02:00
migrator.ts
server-dev.ts chore(#4205): add flag for segmentChangeRequests (#4401) 2023-08-03 15:20:31 +02:00
server.ts