Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions server/.env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ DB_PORT=5433
DB_USER=layer8development
DB_PASSWORD=cRACtIeRChYsiNFinuMp
SSL_MODE=disable
DB_SETUP_MIGRATION_PATH=../migrations

PROXY_URL=http://localhost:5001
TEST_CLIENT_BACKEND_URL=localhost:8000
Expand Down
1 change: 1 addition & 0 deletions server/entities/dto.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ type X509CertificateRequest struct {

type X509CertificateResponse struct {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Easily extensible struct for the future. I suspect we'll likely need more info from Auth server in the future. Not now, but I imagine this struct could be expanded / called something generic and then we can eventually stuff it with other details.

X509Certificate string `json:"x509_certificate"`
ClientID string `json:"client_id"`
}

type OauthTokenRequest struct {
Expand Down
Loading
Loading