tranminhan / coderchat

0 stars 0 forks source link

Coderchat Assignment #1

Open tranminhan opened 8 years ago

tranminhan commented 8 years ago

Here is my week-2 assignment. Thank you!

/cc @coderschoolreview

coderschoolreview commented 8 years ago

Thank you for your Ruby submission, tranminhan!

:laughing: Everything looks good with the format of your submission. We'll be providing a detailed review soon!

chug2k commented 8 years ago

Good work, and sorry for the slow review! This homework is on authentication, using ActiveRecord::Relation, dealing with model associations, using partials, and the items under Bonus help with upcoming topics we will cover.

Hmm, it seems like you've taken your app down from Heroku, but that's okay - sorry for being so slow to grade.

Suggestions

 include SessionsHelper
 include ApplicationHelper

This is making your code messy, because now all the helper methods will be available to your controller. Helpers are for views, so good examples of helper methods are truncate, number_to_currency, etc.

:clap: on the homework. Thanks!