diff options
author | Leon Breedt <bitserf@gmail.com> | 2005-05-07 23:49:45 +0000 |
---|---|---|
committer | Leon Breedt <bitserf@gmail.com> | 2005-05-07 23:49:45 +0000 |
commit | 884fd4792d33032ffa88e08d17a9cf14b733c078 (patch) | |
tree | 11cbafe560b2d43b0f7c1470426685ce58ae5d27 /actionwebservice/test | |
parent | 47a7084b94b8cd0dfc43e0b8f1775eef31c5170d (diff) | |
download | rails-884fd4792d33032ffa88e08d17a9cf14b733c078.tar.gz rails-884fd4792d33032ffa88e08d17a9cf14b733c078.tar.bz2 rails-884fd4792d33032ffa88e08d17a9cf14b733c078.zip |
support using invocation filters in :direct controllers as well, for
consistency. action pack filters don't necessarily include enough information
about the request since they occur before AWS actually sees the request and
unpacks it.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1294 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/test')
-rw-r--r-- | actionwebservice/test/invocation_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionwebservice/test/invocation_test.rb b/actionwebservice/test/invocation_test.rb index 22752fefaf..3ef22fafeb 100644 --- a/actionwebservice/test/invocation_test.rb +++ b/actionwebservice/test/invocation_test.rb @@ -26,7 +26,7 @@ module InvocationTest InterceptorClass = Interceptor.new - class Service < ActionWebService::Base + class Service < ActionController::Base web_service_api API before_invocation :intercept_before, :except => [:no_before] |