English 中文(简体)
更方便地将简单用户认证添加到一只手脚的铁路3号。
原标题:easiest way to add simple user authentication to a scaffolded rails 3 app?

我们已经开发出一条有胆识的铁路3号,位于Heroku,至今没有任何认证。

我们有两种用户,即我们的客户,在我们的客户表中有单一记录,在客户控制人员中可以接触到3或4个意见,我们的内部管理人员可以接触到任何控制人员的任何意见。

我们使客户能够做所有通常的自我登记(贴上“假”账户),通过电子邮件(开立账户)、更改密码、丢失密码等进行认证。

每个用户账户将有一个用户。 没有必要在同样具有不同作用(尚未取得进展)的猎物中使用不同的网络用户。

到目前为止,我已经读到了Devise和Austhlogic...,但我很想就这一相当基本情景的最佳解决办法提出建议。 造成MVC公司违约、处理所有账户制作/结算等情况的假设是理想的。


感谢......

最佳回答

真正简单的认证,检查Ryanb的纳米发电机(https://github.com/ryanb/nifty-generators)。 你们能够创造有条不紊的认证,与你的双手相呼应。 如果你想在晚些时候改变,你就不得不放弃很多工作。

“简单化”是巨大的,但可能太大。 你们可以花钱去工作。

问题回答

善待。 如果你也需要行政作用,那么你也可以利用Can管理授权或为行政管理建立不同的模式。

http://www.tonyamoyal.com/201007/28/rails-authentication-with-devise-and-can-customizing-devise- Controllers/“rel="nofollow”>guide Devise & CanCan

我建议“智者”。 Dev智是一种非常灵活和可以推广的,但你在这两种选择中都没有错。





相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Remotely authenticating client Windows user on demand

Suppose I am writing a server for a particular network protocol. If I know that the client is running on a Windows machine, is it possible for my server to authenticate the Windows user that owns the ...

Role/Permission based forms authorizing/authentication?

While looking into forms authorizing/authentication, I found that it is possible to do role based authorizing by adding an array of roles to a FormsAuthenticationTicket. That way I can write User....

热门标签