Skip to content

Commit 5dd35f7

Browse files
committed
Update initialization parameters in Authly module and authorization handler for consistency
- Added trailing commas to initialization parameters in both the Authly module and the authorization handler for improved readability and consistency across the codebase.
1 parent ae42d34 commit 5dd35f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/authly/client.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module Authly
2323
@jarm_signing_alg = nil,
2424
@jarm_encryption_alg = nil,
2525
@jarm_encryption_enc = nil,
26-
@public_key = nil
26+
@public_key = nil,
2727
)
2828
end
2929
end

src/authly/handlers/authorization_handler.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ module Authly
244244
token_type : String? = nil,
245245
expires_in : Int64? = nil,
246246
scope : String? = nil,
247-
id_token : String? = nil
247+
id_token : String? = nil,
248248
)
249249
# Determine response mode (use client/global default if not specified)
250250
mode = response_mode

0 commit comments

Comments
 (0)