36
loading...
This website collects cookies to deliver better user experience
Log In/Sign Up: This was one of the harder requirements
because we needed to include a way to log in or sign up
through a third party. I used Omniauth to include this
feature. This article helped me set it up, and retrieve the
user information need to log/sign them.
Omniauth Article Link:
https://medium.com/@jenn.leigh.hansen/google-oauth2-for-rails-ba1bcfd1b863
Helper Methods: A helper is a method that has reusable code,
which can be applied to many different places in your rails
app (primarily Controllers and Views).Rails also come with
a set of built-in helper methods. I used 2 helper methods,
which I defined in my Rails-App/app/helpers/application_helper.rb file.