feat(google): group→Google-Group binding model and CRUD API#91
Merged
Conversation
Add GroupGoogleBinding (1:1 Sentinel group <-> Google Group email) with AutoMigration, a service layer, and sentinel:all-gated CRUD endpoints (GET/POST/DELETE /google/group-bindings). No Google API calls yet — this is just the mapping table the reconcile engine will read.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR 2 of the Sentinel-group → Google-Group sync feature. Adds the mapping table and its admin API. Still no Google API calls.
What's here
GroupGoogleBindingmodel (group_google_binding): 1:1 mapping of a Sentinelgroup_id→google_group_email. Both columns unique (one Sentinel group projects onto one Google Group, and each Google Group is driven by a single Sentinel group). AutoMigrated.GetAllGoogleBindings,GetGoogleBindingForGroup,CreateGoogleBinding,DeleteGoogleBinding(delete scoped to group_id + id, mirroring the discord binding).sentinel:all-gated CRUD endpoints:GET /google/group-bindings(optional?group_id=filter)POST /google/group-bindings(validates email format)DELETE /google/group-bindings/:bindingID?group_id=Design notes
Not in this PR
Verification
go build ./...+go vet ./...pass