You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
290 B
8 lines
290 B
from . import models
|
|
|
|
|
|
def slack_uninstall_hook(cr, registry):
|
|
cr.execute("DELETE FROM res_partner WHERE is_slack_user='true'")
|
|
cr.execute("DELETE FROM mail_channel WHERE is_slack='true'")
|
|
cr.execute("DELETE FROM res_users WHERE is_slack_internal_users='true'")
|
|
cr.commit()
|
|
|