Created
December 9, 2015 13:00
-
-
Save jacobat/6b6bd8eab3b78df8a4f7 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 GreetingsController < ApplicationController | |
def index | |
render text: "Hello" | |
end | |
def update | |
session[:greeting] = params[:id] | |
redirect_to root_url | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment