-
Notifications
You must be signed in to change notification settings - Fork 4
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 #1959 from DSD-DBS/beta-testing
feat: Allow users to sign up as beta-testers
- Loading branch information
Showing
42 changed files
with
750 additions
and
23 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
backend/capellacollab/alembic/versions/320c5b39c509_add_beta_tester.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,59 @@ | ||
# SPDX-FileCopyrightText: Copyright DB InfraGO AG and contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
"""Add Beta Tester | ||
Revision ID: 320c5b39c509 | ||
Revises: 3818a5009130 | ||
Create Date: 2024-11-04 12:31:17.024627 | ||
""" | ||
import sqlalchemy as sa | ||
from alembic import op | ||
from sqlalchemy.dialects import postgresql | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "320c5b39c509" | ||
down_revision = "3818a5009130" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
t_tool_versions = sa.Table( | ||
"versions", | ||
sa.MetaData(), | ||
sa.Column("id", sa.Integer()), | ||
sa.Column("config", postgresql.JSONB(astext_type=sa.Text())), | ||
) | ||
|
||
|
||
def upgrade(): | ||
op.add_column( | ||
"users", | ||
sa.Column( | ||
"beta_tester", sa.Boolean(), nullable=False, server_default="false" | ||
), | ||
) | ||
|
||
op.add_column( | ||
"feedback", | ||
sa.Column( | ||
"beta_tester", sa.Boolean(), nullable=False, server_default="false" | ||
), | ||
) | ||
|
||
connection = op.get_bind() | ||
results = connection.execute(sa.select(t_tool_versions)).mappings().all() | ||
|
||
for row in results: | ||
config = row["config"] | ||
config["sessions"]["persistent"]["image"] = { | ||
"default": config["sessions"]["persistent"]["image"], | ||
"beta": None, | ||
} | ||
|
||
connection.execute( | ||
sa.update(t_tool_versions) | ||
.where(t_tool_versions.c.id == row["id"]) | ||
.values(config=config) | ||
) |
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
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.