Created
March 13, 2012 09:58
-
-
Save zacksiri/2027933 to your computer and use it in GitHub Desktop.
Contacts Controller Example should be in the /app/controllers/api folder
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 Api::ContactsController < ApiController | |
before_filter :authenticate_user! | |
def index | |
# magic goes here ... | |
end | |
# more magic ... | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment