Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenID via Proxy #27

Merged
merged 5 commits into from
Dec 2, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add AuthInfoRequest
  • Loading branch information
moubctez committed Nov 10, 2024
commit 59c2ac6ed1689390d0aaa675bc83dd1cf2b6ea94
6 changes: 5 additions & 1 deletion core/proxy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ message ClientMfaFinishResponse {
string preshared_key = 1;
}

message AuthInfoRequest {
string redirect_url = 1;
}

message AuthInfoResponse {
string url = 1;
string csrf_token = 2;
Expand Down Expand Up @@ -205,7 +209,7 @@ message CoreRequest {
ClientMfaStartRequest client_mfa_start = 10;
ClientMfaFinishRequest client_mfa_finish = 11;
InstanceInfoRequest instance_info = 12;
google.protobuf.Empty auth_info = 13;
AuthInfoRequest auth_info = 13;
}
}

Expand Down