-
Notifications
You must be signed in to change notification settings - Fork 32
🎨 add license_key field (🗃️)
#6978
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
matusdrobuliak66
merged 37 commits into
ITISFoundation:master
from
matusdrobuliak66:introduce-vip-models-pricing-7-part
Dec 18, 2024
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
9c815b8
renaming wallets to credit account for frontend
matusdrobuliak66 6abf9bd
fix rut export CSV usage
matusdrobuliak66 a99b7cd
Merge branch 'master' into introduce-vip-models-pricing-6-part
matusdrobuliak66 abccfab
Merge branch 'master' into introduce-vip-models-pricing-6-part
matusdrobuliak66 e060492
implement rut part of checkout/release license
matusdrobuliak66 200b1db
implement rut part of checkout/release license
matusdrobuliak66 7406371
adding tests to rut
matusdrobuliak66 c4e56df
checkout release functionality
matusdrobuliak66 504d2c8
webserver functionality
matusdrobuliak66 7839e46
Merge branch 'master' into introduce-vip-models-pricing-6-part
matusdrobuliak66 68068fb
improve playwright e2e test
matusdrobuliak66 5dd8efa
Merge branch 'master' into introduce-vip-models-pricing-6-part
matusdrobuliak66 b803038
merge master
matusdrobuliak66 3f30f05
add get and list license usages
matusdrobuliak66 c0d5c8e
wire checkout and release in webserver
matusdrobuliak66 4c269c3
wire checkout and release in webserver
matusdrobuliak66 4eaaf16
wire checkout and release in webserver
matusdrobuliak66 34d4577
adding unit tests in webserver
matusdrobuliak66 4826fa8
renaming
matusdrobuliak66 1eaba29
renaming
matusdrobuliak66 a43626d
renaming
matusdrobuliak66 7a1dcf7
renaming
matusdrobuliak66 2a0b64f
renaming
matusdrobuliak66 f8c6567
imporve error handling
matusdrobuliak66 f38de47
fix api server
matusdrobuliak66 a150857
fix failing tests
matusdrobuliak66 043b78b
Merge branch 'master' into introduce-vip-models-pricing-6-part
matusdrobuliak66 8b41ebf
fix available tests
matusdrobuliak66 de312d3
fix mypy
matusdrobuliak66 68ee78c
fix e2e tests
matusdrobuliak66 7e8313c
Merge branch 'master' into introduce-vip-models-pricing-6-part
matusdrobuliak66 1ee8886
review @sanderegg
matusdrobuliak66 84eb893
review @pcrespov
matusdrobuliak66 53a9fee
merge master
matusdrobuliak66 58e2f03
add license key
matusdrobuliak66 172d343
openapi specs
matusdrobuliak66 1ebc3cd
review @pcrespov
matusdrobuliak66 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
29 changes: 29 additions & 0 deletions
29
...database/src/simcore_postgres_database/migration/versions/d31c23845017_add_license_key.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 @@ | ||
| """add license key | ||
|
|
||
| Revision ID: d31c23845017 | ||
| Revises: aa6da21a0055 | ||
| Create Date: 2024-12-18 11:11:52.644534+00:00 | ||
|
|
||
| """ | ||
| import sqlalchemy as sa | ||
| from alembic import op | ||
|
|
||
| # revision identifiers, used by Alembic. | ||
| revision = "d31c23845017" | ||
| down_revision = "aa6da21a0055" | ||
| branch_labels = None | ||
| depends_on = None | ||
|
|
||
|
|
||
| def upgrade(): | ||
| # ### commands auto generated by Alembic - please adjust! ### | ||
| op.add_column( | ||
| "licensed_items", sa.Column("license_key", sa.String(), nullable=True) | ||
| ) | ||
| # ### end Alembic commands ### | ||
|
|
||
|
|
||
| def downgrade(): | ||
| # ### commands auto generated by Alembic - please adjust! ### | ||
| op.drop_column("licensed_items", "license_key") | ||
| # ### end Alembic commands ### |
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
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.