我正在使用 rails 3.2 并使用 jquery mobile 和 handlebar 进行移动应用程序。我正在尝试使用 API 调用编写注销功能。
在我的 lib/extras/api/users.rb 中,我正在尝试执行设计的注销功能。
怎么写
现在我写喜欢
resource :users do
delete '/sign_out' do
authenticate!
user = User.find(params[:id]) rescue not_found
# What to write here to signout the user
end
end