Update authentication.cr

This commit is contained in:
Ryan G 2023-06-13 14:26:47 -07:00
parent 6b8815b04c
commit 9313ecfe22

View File

@ -250,7 +250,18 @@ struct CaptchaResponse
property username : String
property password : String
property answer : String
property tokens : Array(String)
property tokens : Array(CaptchaToken)
end
struct CaptchaToken
include JSON::Serializable
include YAML::Serializable
property session : String
property expire : Int64
property scopes : Array(String)
property nonce : String
property signature : String
end
struct Credentials