diff options
author | Jamis Buck <jamis@37signals.com> | 2006-10-06 17:25:10 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2006-10-06 17:25:10 +0000 |
commit | 6c0609fafb387f2f61ba9eb9754c31bdebeb46ec (patch) | |
tree | da831a059fcba0d286e2b06c958cc127cdd19781 /activeresource/lib/active_resource | |
parent | 54e86cccd5c69322eb1df7a38e19baaadf8733d4 (diff) | |
download | rails-6c0609fafb387f2f61ba9eb9754c31bdebeb46ec.tar.gz rails-6c0609fafb387f2f61ba9eb9754c31bdebeb46ec.tar.bz2 rails-6c0609fafb387f2f61ba9eb9754c31bdebeb46ec.zip |
Add Base.delete for deleting resources without having to instantiate them first
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5229 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activeresource/lib/active_resource')
-rw-r--r-- | activeresource/lib/active_resource/base.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb index 656698fb25..40fd965487 100644 --- a/activeresource/lib/active_resource/base.rb +++ b/activeresource/lib/active_resource/base.rb @@ -81,6 +81,10 @@ module ActiveResource end end + def delete(id) + connection.delete(element_path(id)) + end + private # { :people => { :person => [ person1, person2 ] } } def find_every(options) |