merb_auth_password_slice не поддерживает сеанс
Интегрировав merb_auth_password_slice
согласно README, я могу успешно войти как redirect_after_login
срабатывает, хотя session.authenticated?
возвращает ложь
Пока просто пробуете базовую стратегию аутентификации (форма пароля), кажется, она не работает, есть идеи?
Мой файл инициализации:
require 'dm-validations'
dependencies "merb-more", "merb_helpers", "merb-slices", "merb_auth_password_slice"
Merb::BootLoader.before_app_loads do
DataMapper.setup(:default, "sqlite3://config/dev.db")
end
Merb::BootLoader.after_app_loads do
# have already done this
# raise "You must specify a valid openid in Merb.root/config/open_id to use this example app" unless File.exists?(Merb.root / "config" / "open_id")
# # DataMapper.auto_migrate!
# User.create(:login => "admin",
# :password => "password", :password_confirmation => "password",
# :email => "admin@example.com",
# :identity_url => File.read(Merb.root / "config" / "open_id"))
end
Merb::Config.use do |c|
c[:session_secret_key] = 'my key'
c[:session_store] = 'cookie'
end
setup.rb
class Authentication
def store_user(user)
return nil unless user
user.id
end
def fetch_user(session_info)
User.get(session_info)
end
end # Authentication
1 ответ
Решение
# before(nil, :only => [:update, :destroy]) { session.abandon! }
Это виновник в контроллере сессии среза