mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-09 12:54:14 -05:00
7 lines
132 B
Python
7 lines
132 B
Python
from flask.ext.login import current_user
|
|
|
|
|
|
def _attach_current_user(data):
|
|
data['created_by'] = current_user.id
|
|
return data
|