Skip to content

Instantly share code, notes, and snippets.

@cowboycoded
Created April 11, 2011 17:47
Show Gist options
  • Save cowboycoded/913924 to your computer and use it in GitHub Desktop.
Save cowboycoded/913924 to your computer and use it in GitHub Desktop.
# Lock the whole app
ApplicationController < ActionController::Base
lock
end
# Lock specific controller/actions
ApplicationController < ActionController::Base
lock :actions=>["widgets#new","widgets#index"]
end
# Lock all actions in the widgets controller
ApplicationController < ActionController::Base
lock :actions=>["widgets"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment