Compare commits
No commits in common. "d40a954b67fd8de009b54b0cbf2ff3fd6c78f4dc" and "23f462773f680af6461a824f6e82c6df9ef43670" have entirely different histories.
d40a954b67
...
23f462773f
|
@ -314,7 +314,6 @@ func (a AccountAPI) accountInfo(jc jape.Context) {
|
||||||
Email: acct.Email,
|
Email: acct.Email,
|
||||||
FirstName: acct.FirstName,
|
FirstName: acct.FirstName,
|
||||||
LastName: acct.LastName,
|
LastName: acct.LastName,
|
||||||
Verified: acct.Verified,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,6 @@ type AccountInfoResponse struct {
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
FirstName string `json:"first_name"`
|
FirstName string `json:"first_name"`
|
||||||
LastName string `json:"last_name"`
|
LastName string `json:"last_name"`
|
||||||
Verified bool `json:"verified"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type UploadLimitResponse struct {
|
type UploadLimitResponse struct {
|
||||||
|
|
|
@ -318,12 +318,6 @@ components:
|
||||||
type: string
|
type: string
|
||||||
AccountInfoResponse:
|
AccountInfoResponse:
|
||||||
type: object
|
type: object
|
||||||
required:
|
|
||||||
- id
|
|
||||||
- first_name
|
|
||||||
- last_name
|
|
||||||
- email
|
|
||||||
- verified
|
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
type: number
|
type: number
|
||||||
|
@ -333,8 +327,6 @@ components:
|
||||||
type: string
|
type: string
|
||||||
email:
|
email:
|
||||||
type: string
|
type: string
|
||||||
verified:
|
|
||||||
type: boolean
|
|
||||||
UploadLimitResponse:
|
UploadLimitResponse:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
Loading…
Reference in New Issue