mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 23:41:17 -05:00
7 lines
115 B
Python
7 lines
115 B
Python
|
|
from app import db
|
||
|
|
|
||
|
|
|
||
|
|
def save_invited_user(invited_user):
|
||
|
|
db.session.add(invited_user)
|
||
|
|
db.session.commit()
|