method

commit

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: EncryptedKeyRotatingCookieJar
commit(name, options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 676
        def commit(name, options)
          super
          options[:value] = @encryptor.encrypt_and_sign(options[:value], **cookie_metadata(name, options))
          check_for_overflow!(name, options)
        end
Register or log in to add new notes.