Beispiel #1
0
def talk_subscriptions_remove(shortname, ctr):
    if shortname == 'IC':
        code, msg =  current_user.ics_limit(ctr, False)
    else:
        code, msg = current_user.talk_subscriptions_remove(shortname, int(ctr))
    current_user.save()
    return msg, code
Beispiel #2
0
def talk_subscriptions_remove(shortname, ctr):
    code, msg = current_user.talk_subscriptions_remove(shortname, int(ctr))
    current_user.save()
    return msg, code