我正在尝试为应用的登录/注册自定义程序编写API,但希望通过我的应用程序使用设计功能。问题是没有定义devise_for :users
中的devise_scope :user
或config/routes.rb
设备的地图未创建,因此我无法使用sign_in @user
等等。
如果没有启用路线,我该如何使用设计功能?
答案 0 :(得分:0)
我想通了
# config/routes.rb
Rails.application.routes.draw do
# root controller#action
root 'home#index'
# define the devise's user and
# disable direct access to devise's routes
devise_for :users, skip: :all
end