Skip to content

Instantly share code, notes, and snippets.

@lambdajitsu
Created July 21, 2008 21:36
Show Gist options
  • Save lambdajitsu/292 to your computer and use it in GitHub Desktop.
Save lambdajitsu/292 to your computer and use it in GitHub Desktop.
Admin Controller Templete
class Admin::SomethingsController < Admin::AbstractController
# Authorization
before_filter :authorize_something_view, :only => [:index]
# GET /admin/somethings
def index
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment