Last active
August 9, 2017 07:35
-
-
Save shiroginne/8319f4bc45c6572e31304139c228c3db to your computer and use it in GitHub Desktop.
Rails controllers example
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 RootController < ApplicationController | |
def create_post | |
# some code | |
end | |
def set_rating | |
# some code | |
end | |
def get_top_rating_movies | |
# some code | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment