New generation init

This commit is contained in:
Richard Chien
2018-06-15 06:58:24 +08:00
parent 6ce021926e
commit a3844eda69
61 changed files with 266 additions and 4063 deletions

12
none/helpers.py Normal file
View File

@ -0,0 +1,12 @@
from typing import Dict, Any
def context_source(ctx: Dict[str, Any]) -> str:
src = ''
if ctx.get('group_id'):
src += 'g%s' % ctx['group_id']
elif ctx.get('discuss_id'):
src += 'd%s' % ctx['discuss_id']
if ctx.get('user_id'):
src += 'p%s' % ctx['user_id']
return src