-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tag: add delete #193
base: master
Are you sure you want to change the base?
tag: add delete #193
Conversation
from intercom.service.base_service import BaseService | ||
|
||
|
||
class Tag(BaseService, All, Find, FindAll, Save): | ||
class Tag(BaseService, All, Find, FindAll, Save, Delete): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good:)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ellakz could you grant me write access so I could merge this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Granted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ellakz thanks! strangely it didn't get through. I still might not have the write access
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@apassant hello! Could you help us review on this change? :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you need access to intercom/python-intercom to merge...
Delete tag is enabled in the Intercom API:
https://developers.intercom.com/reference#delete-a-tag
So I enabled it in the python wrapper as well.