Skip to content

Instantly share code, notes, and snippets.

@marcamillion
Created July 6, 2011 19:16
Show Gist options
  • Save marcamillion/1068084 to your computer and use it in GitHub Desktop.
Save marcamillion/1068084 to your computer and use it in GitHub Desktop.
role :guest do
has_permission_on [:paying_users], :to => [:index]
end
class PayingUsersController < ApplicationController
filter_resource_access
def index
@users = User.all
end
end
resources :paying_users
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment