我是Ruby on Rails的新手,我在使用设计配置typus时遇到问题。
我有一个Rails REST应用程序(使用rails_api构建),它使用设计来进行身份验证。目前我正在开发一个新的Rails应用程序,它应该是使用typus的REST应用程序的管理页面。最终,我的目标是让这个管理员应用程序访问与之前构建的REST应用程序相同的数据库,同时使用REST应用程序的现有设计模型。但是,即使用户存在于数据库中,我仍然会收到401 Unathorized消息。
准确地说,我在REST应用程序中有一个设计模型Account
,我想在我的管理应用程序中使用这个特定的设计模型作为设计模型。我将模型Account
(以及其他模型)从REST应用程序复制到新的管理员应用程序,然后,我按照this配置typus以使用设计进行身份验证但不生成新的设计模型:< / p>
rails generate devise:install
rails generate typus
# config/initializers/typus.rb
Typus.setup do |config|
config.authentication = :devise
config.user_class_name = "Account"
end
# edit the devise model: Account
require 'typus/orm/active_record/instance_methods'
class Account < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable,
:omniauthable, :confirmable
include Typus::Orm::ActiveRecord::InstanceMethods
def locale
::I18n.locale
end
def role
Typus.master_role
end
end
# routes.rb
Rails.application.routes.draw do
devise_for :accounts
end
# initializers/devise.rb
# make secret_key the same with REST app's secret_key
config.secret_key = 'identic-secret-key-with-rest-app'
当我运行服务器并尝试使用数据库中的现有用户(来自REST应用程序的用户)登录时,它始终在服务器控制台中说401 Unauthorized。我的配置中有什么错过的吗?甚至我的方法是可行的?
如果我为管理员应用程序生成新的设计模型,那么效果很好。
答案 0 :(得分:0)
您在注册时会在帐户模型中添加:可确认,它会向您发送确认邮件以确认您的电子邮件,如果您在未经确认的情况下登录,则会发出未经授权的错误。