-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from bcgov/development
Merge to master pay release 1.6.0
- Loading branch information
Showing
26 changed files
with
342 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: compliance | ||
description: | | ||
This document is used to track a projects PIA and STRA | ||
compliance. | ||
spec: | ||
- name: PIA | ||
status: completed | ||
last-updated: '2020-01-17T17:40:59.150Z' | ||
- name: STRA | ||
status: completed | ||
last-updated: '2020-01-17T17:41:09.050Z' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
openapi: 3.0.0 | ||
info: | ||
title: report-api-1.0.0.yaml | ||
version: '1.0' | ||
description: Report API | ||
paths: | ||
/reports: | ||
post: | ||
summary: Create pdf report. | ||
responses: | ||
'200': | ||
description: OK | ||
content: | ||
application/pdf: | ||
schema: | ||
type: object | ||
properties: {} | ||
'400': | ||
description: Bad Request | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
code: | ||
type: string | ||
message: | ||
type: string | ||
'': | ||
content: | ||
application/pdf: | ||
schema: | ||
type: object | ||
properties: {} | ||
examples: {} | ||
description: Create pdf report. | ||
operationId: post_report | ||
requestBody: | ||
description: '' | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
reportName: | ||
type: string | ||
templateVars: | ||
type: string | ||
populatePageNumber: | ||
type: boolean | ||
templateName: | ||
type: string | ||
template: | ||
type: string | ||
examples: {} | ||
parameters: [] | ||
components: | ||
schemas: {} |
34 changes: 34 additions & 0 deletions
34
pay-api/migrations/versions/78951cf14ae9_waived_fee_changes.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
"""waived_fee_changes | ||
Revision ID: 78951cf14ae9 | ||
Revises: 7d16423bc042 | ||
Create Date: 2020-01-24 11:29:27.828781 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '78951cf14ae9' | ||
down_revision = '7d16423bc042' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.add_column('payment_line_item', sa.Column('waived_by', sa.String(length=50), nullable=True)) | ||
op.add_column('payment_line_item', sa.Column('waived_fees', sa.Float(), nullable=True)) | ||
op.alter_column('payment_line_item', 'filing_fees', | ||
existing_type=sa.INTEGER, | ||
type_=sa.FLOAT, | ||
existing_nullable=False) | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.drop_column('payment_line_item', 'waived_fees') | ||
op.drop_column('payment_line_item', 'waived_by') | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,5 @@ pydocstyle<4 | |
|
||
# docker | ||
lovely-pytest-docker | ||
pytest_docker | ||
pytest-asyncio | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ asyncio-nats-client | |
asyncio-nats-streaming | ||
croniter | ||
sentry-sdk[flask] | ||
attrs<=19.1.0 | ||
attrs<=19.1.0 | ||
jaeger-client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
-e git://github.com/pwei1018/jaeger-client-python.git@186f14e14758273ed108508c0d388a4f4de5c75b#egg=jaeger-client | ||
-e git+https://github.com/bcgov/sbc-common-components.git#egg=sbc-common-components-1.0.0&subdirectory=python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.