mirror of
https://github.com/heartcombo/devise.git
synced 2026-02-19 02:44:31 -05:00
All of these have been deprecated for years, if we're releasing a new major version, let's take the opportunity to do some cleanup. * Remove deprecated `:bypass` option from `sign_in` helper, use `bypass_sign_in` instead. * Remove deprecated `devise_error_messages!` helper, use `render "devise/shared/error_messages", resource: resource` instead. * Remove deprecated `scope` second argument from `sign_in(resource, :admin)` controller test helper, use `sign_in(resource, scope: :admin)` instead. * Remove deprecated `Devise::TestHelpers`, use `Devise::Test::ControllerHelpers` instead. Closes #5739
6 lines
111 B
Ruby
6 lines
111 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Keeping the helper around for backward compatibility.
|
|
module DeviseHelper
|
|
end
|