EPA project: Add API and endpoint configuration creation endpoints and lookups. - #57
Open
9ajia wants to merge 14 commits into
Open
EPA project: Add API and endpoint configuration creation endpoints and lookups.#579ajia wants to merge 14 commits into
9ajia wants to merge 14 commits into
Conversation
- add GET /api/v1/tokens/options through the controller, use case, gateway, and response DTOs - return consumer types, APIs, and endpoints from lookup tables for the request token form - register the token options use case in dependency injection - add local dev Docker and migration commands with configurable database port support - update local development docs and launch settings for the current token admin setup
…e and api_gateway_id.
… data. expecting correct response. from post
LBHTKarki
reviewed
May 27, 2026
LBHTKarki
requested changes
May 27, 2026
9ajia
commented
May 28, 2026
9ajia
left a comment
Author
There was a problem hiding this comment.
Removed unused using statements from TokenOptionsResponse.cs, TokenAdministrationApiController.cs, and PostApiUseCase.cs.
Simplified TokenOptionsResponse list initializers from new() to [].
Fixed formatting in IGetTokenOptionsUseCase.cs.
Cleaned up extra blank lines in the controller.
LBHTKarki
previously approved these changes
May 28, 2026
Miles-Alford
previously approved these changes
May 29, 2026
Reorganized CircleCI workflows to include deployment stages for development, staging, and production environments. Added approval steps and filters for branch-specific deployments.
Duslerke
approved these changes
Aug 7, 2026
Duslerke
left a comment
Contributor
There was a problem hiding this comment.
Approving as the pipeline merge conflict has been resolved.
Approving w/o review as Tuomo has already reviewed this and he's a very diligent reviewer.
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.
Adds support for creating API lookup records and endpoint lookup records through the token administration API.
Changes included
POST /api/v1/apisto create API lookup entries with API name and gateway ID.POST /api/v1/apis/{apiLookupId}/endpointsto create endpoint entries for an existing API.dotnet format.Testing