Created
August 30, 2014 23:41
-
-
Save adagio/61435ca96c75d873b660 to your computer and use it in GitHub Desktop.
Create a Controller to simply retrieve all records for the entity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class WeeksController < ApplicationController | |
# GET /weeks | |
def index | |
@weeks = Week.all | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment