Skip to content

Instantly share code, notes, and snippets.

@lizdenhup
Created October 3, 2016 21:27
Show Gist options
  • Save lizdenhup/7f7f1ada189b802850d7817b53059b40 to your computer and use it in GitHub Desktop.
Save lizdenhup/7f7f1ada189b802850d7817b53059b40 to your computer and use it in GitHub Desktop.
Helper methods for use in a Sinatra CRUD app
require './config/environment'
class ApplicationController < Sinatra::Base
helpers do
def logged_in?
!!session[:id]
end
def current_user
User.find(session[:id])
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment