[Rails] Re: Listing & Editing Profile Pages -

2015-10-09 Thread Spencer Christiansen
Ruby is case-sensitive. In your first jpeg, change the `PRESENT?` method to `present?` (on line 16 of your UsersController file) Your second jpeg is showing that you haven't initialized your @user object in the index action. You can initialize it in the UsersController file, in the `index` meth

Re: [Rails] Listing & Editing Profile Pages -

2015-10-09 Thread Colin Law
On 9 October 2015 at 01:20, Greg Bressler wrote: > I am relatively new to this and completely lost. I'm trying to make a > user's profile page. If the user is an admin, they can see all the > users, as well as access and edit/update each user's profile page. > > I finally got it to work...but wh