Skip to content

Instantly share code, notes, and snippets.

@thesunwave
Last active August 29, 2015 14:08
Show Gist options
  • Save thesunwave/77393c2bec53713c74bb to your computer and use it in GitHub Desktop.
Save thesunwave/77393c2bec53713c74bb to your computer and use it in GitHub Desktop.
class PublicController < ApplicationController
before_filter :authenticate_user!, :except => [:about]
def index
@users = User.all
end
def about
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment