Last active
May 11, 2019 02:21
-
-
Save nikolalsvk/711d14cb42ba2414a3835e0b396a1a59 to your computer and use it in GitHub Desktop.
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
| # app/controllers/movies_controller.rb | |
| class MoviesController < ApplicationController | |
| # somewhere inside Movies controller | |
| def rating | |
| @rating = @movie.rating | |
| render partial: 'movie_rating' | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment