Skip to content

Instantly share code, notes, and snippets.

@jacobat
Created December 9, 2015 13:00
Show Gist options
  • Save jacobat/6b6bd8eab3b78df8a4f7 to your computer and use it in GitHub Desktop.
Save jacobat/6b6bd8eab3b78df8a4f7 to your computer and use it in GitHub Desktop.
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