Skip to content
This repository was archived by the owner on Feb 4, 2021. It is now read-only.

Commit 77f5e74

Browse files
committed
Fix
1 parent 7f9352e commit 77f5e74

File tree

3 files changed

+68
-69
lines changed

3 files changed

+68
-69
lines changed

api/oauth.pb.go

Lines changed: 61 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/oauth.swagger.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,9 @@
146146
"prolab_accountsOAuthLoginRequest": {
147147
"type": "object",
148148
"properties": {
149+
"login_challenge": {
150+
"type": "string"
151+
},
149152
"name": {
150153
"type": "string"
151154
},
@@ -155,9 +158,6 @@
155158
"remember": {
156159
"type": "boolean",
157160
"format": "boolean"
158-
},
159-
"challenge": {
160-
"type": "string"
161161
}
162162
}
163163
},

api/protos/oauth.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ message StartOAuthLoginResponse {
4545
}
4646

4747
message OAuthLoginRequest {
48-
string name = 1;
49-
string password = 2;
50-
bool remember = 3;
51-
string challenge = 4;
48+
string login_challenge = 1;
49+
string name = 2;
50+
string password = 3;
51+
bool remember = 4;
5252
}
5353

5454
message OAuthLoginResponse {

0 commit comments

Comments
 (0)