Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
44d0275
Implement getGroups v3 api
mladen-inabyte Dec 10, 2025
a3caa1b
Finish the feature and resolve vulnerabilities
mladen-inabyte Dec 11, 2025
df56489
Additional fixes for membership status filter
mladen-inabyte Dec 12, 2025
9796dfa
Fix docs
mladen-inabyte Dec 15, 2025
7fcc5e3
Additonal api doc fix
mladen-inabyte Dec 15, 2025
e551b03
Changelog
mladen-inabyte Dec 15, 2025
d475462
Fix array out of bound
mladen-inabyte Dec 15, 2025
c1d7f2d
Changelog
mladen-inabyte Dec 15, 2025
94d6556
Merge branch 'develop' into 613-group-filters-improvements
mladen-inabyte Dec 15, 2025
18b498d
Fix docs
mladen-inabyte Dec 15, 2025
0b65242
Changelog
mladen-inabyte Dec 15, 2025
681fc0f
Merge branch 'develop' into 613-group-filters-improvements
mladen-inabyte Dec 15, 2025
7c0031f
Merge branch 'develop' into 613-group-filters-improvements
mladen-inabyte Dec 16, 2025
da94fdf
Redo api doc
mladen-inabyte Dec 16, 2025
6e4eaf9
Fix build and update libraries and go version
mladen-inabyte Dec 16, 2025
ebf3eee
Update apis and regenerate docs
mladen-inabyte Dec 16, 2025
95318ac
Changelog
mladen-inabyte Dec 16, 2025
464b986
Fix member_status field
mladen-inabyte Dec 16, 2025
e0c6b48
Merge branch 'develop' into 613-group-filters-improvements
mladen-inabyte Dec 16, 2025
106dbb5
Fix deviation between groups filtering and stats logic
mladen-inabyte Dec 17, 2025
b850e17
fix limit
mladen-inabyte Dec 17, 2025
d3be0c2
fix wrong type
mladen-inabyte Dec 17, 2025
8ee69aa
Handle additional 5 records if limit_id presents
mladen-inabyte Dec 17, 2025
f58b4a9
Changelog
mladen-inabyte Dec 17, 2025
a0f6f2f
More improvements
mladen-inabyte Dec 17, 2025
8be4565
Update apidoc
mladen-inabyte Dec 17, 2025
1e499f7
Merge branch 'develop' into 613-group-filters-improvements
mladen-inabyte Dec 17, 2025
62f4e7b
Make stats api public
mladen-inabyte Dec 18, 2025
518666c
Merge branch 'develop' into 613-group-filters-improvements
mladen-inabyte Dec 18, 2025
32091c0
Change log
mladen-inabyte Dec 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased


## [1.73.6] - 2025-12-18
### Fixed
- USABILITY UI CleanUp: Group Filters - API improvements. Make the stats api avaliable for not signed in users. Additional fixes[#613](https://github.com/rokwire/groups-building-block/issues/613)

## [1.73.5] - 2025-12-17
### Fixed
- USABILITY UI CleanUp: Group Filters - API improvements. Additional fixes[#613](https://github.com/rokwire/groups-building-block/issues/613)
Expand Down
2 changes: 1 addition & 1 deletion driver/web/adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func (we *Adapter) Start() {

restSubrouter.HandleFunc("/v3/group", we.idTokenAuthWrapFunc(we.apisHandler.CreateGroupV3)).Methods("POST")
restSubrouter.HandleFunc("/v3/groups/load", we.anonymousAuthWrapFunc(we.apisHandler.GetGroupsV3)).Methods("POST")
restSubrouter.HandleFunc("/v3/groups/stats", we.idTokenAuthWrapFunc(we.apisHandler.GetGroupsFilterStatsV3)).Methods("POST")
restSubrouter.HandleFunc("/v3/groups/stats", we.anonymousAuthWrapFunc(we.apisHandler.GetGroupsFilterStatsV3)).Methods("POST")

//V1 Client APIs
restSubrouter.HandleFunc("/authman/synchronize", we.idTokenAuthWrapFunc(we.apisHandler.SynchronizeAuthman)).Methods("POST")
Expand Down