Merge branch 'fix-auth-plugin-links' into 'master'

Fix auth plugins wiki links

See merge request os85/httpx!303
This commit is contained in:
HoneyryderChuck 2023-11-19 22:36:44 +00:00
commit 02c1917004
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ module HTTPX
# the HTTP Authorization header, and another, +bearer_auth+, which fill the "Bearer " prefix # the HTTP Authorization header, and another, +bearer_auth+, which fill the "Bearer " prefix
# in its value. # in its value.
# #
# https://gitlab.com/os85/httpx/wikis/Auth#authorization # https://gitlab.com/os85/httpx/wikis/Auth#auth
# #
module Auth module Auth
module InstanceMethods module InstanceMethods

View File

@ -5,7 +5,7 @@ module HTTPX
# #
# This plugin adds helper methods to implement HTTP Basic Auth (https://tools.ietf.org/html/rfc7617) # This plugin adds helper methods to implement HTTP Basic Auth (https://tools.ietf.org/html/rfc7617)
# #
# https://gitlab.com/os85/httpx/wikis/Authorization#basic-auth # https://gitlab.com/os85/httpx/wikis/Auth#basic-auth
# #
module BasicAuth module BasicAuth
class << self class << self

View File

@ -5,7 +5,7 @@ module HTTPX
# #
# This plugin adds helper methods to implement HTTP Digest Auth (https://tools.ietf.org/html/rfc7616) # This plugin adds helper methods to implement HTTP Digest Auth (https://tools.ietf.org/html/rfc7616)
# #
# https://gitlab.com/os85/httpx/wikis/Authorization#digest-auth # https://gitlab.com/os85/httpx/wikis/Auth#digest-auth
# #
module DigestAuth module DigestAuth
DigestError = Class.new(Error) DigestError = Class.new(Error)

View File

@ -3,7 +3,7 @@
module HTTPX module HTTPX
module Plugins module Plugins
# #
# https://gitlab.com/os85/httpx/wikis/Authorization#ntlm-auth # https://gitlab.com/os85/httpx/wikis/Auth#ntlm-auth
# #
module NTLMAuth module NTLMAuth
class << self class << self