-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feature-9040 + feature-9042: return register state of attendee #9051
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
55e2e21
fix issue user request check in not admin
nnhathung fd092dc
Merge branch 'development' of github.com:lthanhhieu/open-event-server…
nnhathung 78ca625
Merge branch 'development' of github.com:lthanhhieu/open-event-server…
nnhathung 55de5b6
Merge branch 'development' of github.com:lthanhhieu/open-event-server…
nnhathung b462528
format code
nnhathung 78d9630
feature-9040 + feature-9042: update unit test
nnhathung 7254fa4
fix UT
nnhathung b6ee688
update payload + api route
nnhathung bd74f53
Merge branch 'development' of github.com:lthanhhieu/open-event-server…
nnhathung 51b0198
Merge branch 'development' into nnhathung_tma/feature-9040
nnhathung a934caa
update unit test
nnhathung f4c7877
update payload for attendee state api
nnhathung dd3b392
fix payload
nnhathung 8ad6210
Merge branch 'development' of github.com:lthanhhieu/open-event-server…
nnhathung e97fe99
Merge branch 'development' into nnhathung_tma/feature-9040
nnhathung 5947c7d
fix ci/cd
nnhathung 02471ac
fix ci/cd
nnhathung 30cef4d
fix conflict
nnhathung fc0afd5
fix conflict
nnhathung ab615b0
validat mising request params
nnhathung 364106c
re-run pipeline
nnhathung 5df8515
re-run pipeline
nnhathung File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
29 changes: 29 additions & 0 deletions
29
migrations/versions/rev-2023-08-07-15:52:49-3e8e18c0bebe_.py
This file contains hidden or 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,29 @@ | ||
| """empty message | ||
|
|
||
| Revision ID: 3e8e18c0bebe | ||
| Revises: 8b5bc48e1d4c | ||
| Create Date: 2023-08-07 15:52:49.656233 | ||
|
|
||
| """ | ||
|
|
||
| from alembic import op | ||
| import sqlalchemy as sa | ||
|
|
||
|
|
||
| # revision identifiers, used by Alembic. | ||
| revision = '3e8e18c0bebe' | ||
| down_revision = '8b5bc48e1d4c' | ||
|
|
||
|
|
||
| def upgrade(): | ||
| # ### commands auto generated by Alembic - please adjust! ### | ||
| op.add_column('ticket_holders', sa.Column('is_registered', sa.Boolean(), server_default='False', nullable=True)) | ||
| op.add_column('ticket_holders', sa.Column('register_times', sa.String(), nullable=True)) | ||
| # ### end Alembic commands ### | ||
|
|
||
|
|
||
| def downgrade(): | ||
| # ### commands auto generated by Alembic - please adjust! ### | ||
| op.drop_column('ticket_holders', 'register_times') | ||
| op.drop_column('ticket_holders', 'is_registered') | ||
| # ### end Alembic commands ### |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.