在 rails 4 中迁移 restful-身份验证
migrate restful-authentication in rails 4
我想将Rails 2 app迁移到Rails 4.我已经成功迁移到Rails 3.现在我有一个大问题restful-authentication .它不适用于 rails 4,所以我需要在设计中迁移,但我不希望对成千上万的现有用户进行任何更改。
在 devise 中迁移更好还是有其他替代方法 restful-authentication?
restful_authentication 不再维护,因此我建议迁移到类似设计的替代方案。通过一些配置,您可以将设备设置为使用通过 restful_authentication 加密的密码。他们的 github 页面上有关于如何操作的指南:https://github.com/plataformatec/devise/wiki/How-To:-Migrate-from-restful_authentication-to-Devise
我想将Rails 2 app迁移到Rails 4.我已经成功迁移到Rails 3.现在我有一个大问题restful-authentication .它不适用于 rails 4,所以我需要在设计中迁移,但我不希望对成千上万的现有用户进行任何更改。
在 devise 中迁移更好还是有其他替代方法 restful-authentication?
restful_authentication 不再维护,因此我建议迁移到类似设计的替代方案。通过一些配置,您可以将设备设置为使用通过 restful_authentication 加密的密码。他们的 github 页面上有关于如何操作的指南:https://github.com/plataformatec/devise/wiki/How-To:-Migrate-from-restful_authentication-to-Devise