Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Commit

Permalink
Add apps.uninstall method
Browse files Browse the repository at this point in the history
  • Loading branch information
os committed Apr 25, 2019
1 parent 0043a98 commit 4218777
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions slacker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1142,6 +1142,12 @@ def __init__(self, *args, **kwargs):
def permissions(self):
return self._permissions

def uninstall(self, client_id, client_secret):
return self.get(
'apps.uninstall',
params={'client_id': client_id, 'client_secret': client_secret}
)


class IncomingWebhook(object):
def __init__(self, url=None, timeout=DEFAULT_TIMEOUT, proxies=None):
Expand Down

0 comments on commit 4218777

Please sign in to comment.