1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Update http_authentication.rb

Words such as "dead simple" are at best redundant, and at worst distracting.
This commit is contained in:
Emma 2021-06-13 13:24:51 +01:00 committed by GitHub
parent 3b1f87aded
commit e518999142
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,9 +4,9 @@ require "base64"
require "active_support/security_utils" require "active_support/security_utils"
module ActionController module ActionController
# Makes it dead easy to do HTTP Basic, Digest and Token authentication. # HTTP Basic, Digest and Token authentication.
module HttpAuthentication module HttpAuthentication
# Makes it dead easy to do HTTP \Basic authentication. # HTTP \Basic authentication.
# #
# === Simple \Basic example # === Simple \Basic example
# #
@ -24,8 +24,8 @@ module ActionController
# #
# === Advanced \Basic example # === Advanced \Basic example
# #
# Here is a more advanced \Basic example where only Atom feeds and the XML API is protected by HTTP authentication, # Here is a more advanced \Basic example where only Atom feeds and the XML API are protected by HTTP authentication.
# the regular HTML interface is protected by a session approach: # The regular HTML interface is protected by a session approach:
# #
# class ApplicationController < ActionController::Base # class ApplicationController < ActionController::Base
# before_action :set_account, :authenticate # before_action :set_account, :authenticate
@ -134,7 +134,7 @@ module ActionController
end end
end end
# Makes it dead easy to do HTTP \Digest authentication. # HTTP \Digest authentication.
# #
# === Simple \Digest example # === Simple \Digest example
# #
@ -330,7 +330,7 @@ module ActionController
end end
end end
# Makes it dead easy to do HTTP Token authentication. # HTTP Token authentication.
# #
# Simple Token example: # Simple Token example:
# #
@ -358,8 +358,8 @@ module ActionController
# end # end
# #
# #
# Here is a more advanced Token example where only Atom feeds and the XML API is protected by HTTP token authentication, # Here is a more advanced Token example where only Atom feeds and the XML API are protected by HTTP token authentication.
# the regular HTML interface is protected by a session approach: # The regular HTML interface is protected by a session approach:
# #
# class ApplicationController < ActionController::Base # class ApplicationController < ActionController::Base
# before_action :set_account, :authenticate # before_action :set_account, :authenticate