Method: Podio::Tag.delete
- Defined in:
- lib/podio/models/tag.rb
.delete(tagable_type, tagable_id, attributes) ⇒ Object
67 68 69 70 71 72 73 |
# File 'lib/podio/models/tag.rb', line 67 def delete(tagable_type, tagable_id, attributes) response = Podio.connection.delete do |req| req.url("/tag/#{tagable_type}/#{tagable_id}/", attributes) end response.status end |