-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TRACK-181: Issues Is Resolved Slider (#2478)
- add resolved slider to edit issue modal - add is_resolved column to work_issues table - update api request - add Resolved flag - add sorting to list of issues - filter report preview to remove resolved issues - filter EA report to remove resolved issues
- Loading branch information
1 parent
0f9d016
commit 55489c7
Showing
14 changed files
with
170 additions
and
37 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
epictrack-api/migrations/versions/09fb62ec79e9_add_is_resolved_to_work_issues.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 @@ | ||
"""add is_resolved to work_issues | ||
Revision ID: 09fb62ec79e9 | ||
Revises: af4022c1a70c | ||
Create Date: 2024-11-29 16:29:02.770899 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.dialects import postgresql | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '09fb62ec79e9' | ||
down_revision = 'af4022c1a70c' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
|
||
with op.batch_alter_table('work_issues', schema=None) as batch_op: | ||
batch_op.add_column(sa.Column('is_resolved', sa.Boolean(), nullable=False, server_default=sa.false())) | ||
|
||
with op.batch_alter_table('work_issues_history', schema=None) as batch_op: | ||
batch_op.add_column(sa.Column('is_resolved', sa.Boolean(), autoincrement=False, nullable=False, server_default=sa.false())) | ||
|
||
|
||
def downgrade(): | ||
|
||
with op.batch_alter_table('work_issues_history', schema=None) as batch_op: | ||
batch_op.drop_column('is_resolved') | ||
|
||
with op.batch_alter_table('work_issues', schema=None) as batch_op: | ||
batch_op.drop_column('is_resolved') |
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
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.