Skip to content

Instantly share code, notes, and snippets.

@imajes
Created September 2, 2014 22:16
Show Gist options
  • Save imajes/fc4f81061c7f601ad790 to your computer and use it in GitHub Desktop.
Save imajes/fc4f81061c7f601ad790 to your computer and use it in GitHub Desktop.
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