We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617e8b6 commit acb64e5Copy full SHA for acb64e5
spec/support/handlers_spec.cr
@@ -95,7 +95,7 @@ module Authly
95
96
describe "RevokeHandler" do
97
it "returns success message for valid token revocation" do
98
- access_token = Authly::AccessToken.new( "1", "read").access_token
+ access_token = Authly::AccessToken.new("1", "read").access_token
99
response = HTTP::Client.post("#{BASE_URI}/revoke", form: {"token" => access_token})
100
response.status_code.should eq 200
101
response.body.should eq "Token revoked successfully"
src/authly/code.cr
@@ -24,7 +24,7 @@ module Authly
24
25
def jwt
26
Authly.jwt_encode({
27
- "jti" => Random::Secure.hex(32),
+ "jti" => Random::Secure.hex(32),
28
"code" => code,
29
"challenge" => challenge,
30
"method" => method,
0 commit comments