Created
September 2, 2014 22:16
-
-
Save imajes/fc4f81061c7f601ad790 to your computer and use it in GitHub Desktop.
This file contains 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 StoriesController < ActivityController | |
def module | |
show_story | |
end | |
def homepage | |
load_record | |
show_story | |
end | |
protected | |
def model | |
Story | |
end | |
def subject | |
:story | |
end | |
def show_story | |
@assessment = @story.assessment | |
render :homepage | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment