Skip to content

Instantly share code, notes, and snippets.

@sevenseacat
Created June 29, 2017 03:26
Show Gist options
  • Save sevenseacat/c41406f568d0035d2c88081f0d0fa56a to your computer and use it in GitHub Desktop.
Save sevenseacat/c41406f568d0035d2c88081f0d0fa56a to your computer and use it in GitHub Desktop.
def index
@todos = current_user.todos.all
if params.has_key?(:done)
@todos = @todos.where(done: params[:done])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment