Skip to content

Commit

Permalink
Added report and report approval apis
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreyansh committed Dec 8, 2020
1 parent f6314e3 commit 63423ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions fyle/platform/apis/v1/admin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from .reimbursements import Reimbursements
from .report_stats import ReportStats
from .reports import Reports
from .report_approvals import ReportApprovals
from .settlements import Settlements
from .trip_requests_stats import TripRequestsStats

Expand All @@ -43,5 +44,6 @@
reimbursements = Reimbursements(version, role)
report_stats = ReportStats(version, role)
reports = Reports(version, role)
report_approvals = ReportApprovals(version, role)
settlements = Settlements(version, role)
trip_requests_stats = TripRequestsStats(version, role)
2 changes: 2 additions & 0 deletions fyle/platform/apis/v1/approver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
"""

from .report_approvals import ReportApprovals
from .reports import Reports

from ..version import version

role = 'approver'

report_approvals = ReportApprovals(version, role)
reports = Reports(version, role)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='fyle',
version='0.1.4-beta',
version='0.1.5-beta',
author='Siva Narayanan',
author_email='[email protected]',
description='Python SDK for accessing Fyle Platform APIs',
Expand Down

0 comments on commit 63423ba

Please sign in to comment.