mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 00:11:16 -05:00
10 lines
202 B
Python
10 lines
202 B
Python
|
|
from app.models import Organisation
|
||
|
|
|
||
|
|
|
||
|
|
def dao_get_organisations():
|
||
|
|
return Organisation.query.all()
|
||
|
|
|
||
|
|
|
||
|
|
def dao_get_organisation_by_id(org_id):
|
||
|
|
return Organisation.query.filter_by(id=org_id).one()
|