File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
packages/postgres-database/src/simcore_postgres_database
services/web/server/src/simcore_service_webserver/projects Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1- """ Facade for webserver service
1+ """Facade for webserver service
22
3- Facade to direct access to models in the database by
4- the webserver service
3+ Facade to direct access to models in the database by
4+ the webserver service
55
66"""
7+
78from .models .api_keys import api_keys
89from .models .classifiers import group_classifiers
910from .models .comp_pipeline import StateType , comp_pipeline
1011from .models .comp_tasks import DB_CHANNEL_NAME , NodeClass , comp_tasks
1112from .models .confirmations import ConfirmationAction , confirmations
1213from .models .groups import GroupType , groups , user_to_groups
1314from .models .products import products
14- from .models .projects import ProjectType , projects
15+ from .models .projects import ProjectTemplateType , ProjectType , projects
1516from .models .projects_nodes import projects_nodes
1617from .models .projects_tags import projects_tags
1718from .models .projects_to_wallet import projects_to_wallet
3536 "projects" ,
3637 "projects_nodes" ,
3738 "ProjectType" ,
39+ "ProjectTemplateType" ,
3840 "scicrunch_resources" ,
3941 "StateType" ,
4042 "projects_tags" ,
Original file line number Diff line number Diff line change 4040from simcore_postgres_database .aiopg_errors import UniqueViolation
4141from simcore_postgres_database .models .groups import user_to_groups
4242from simcore_postgres_database .models .project_to_groups import project_to_groups
43- from simcore_postgres_database .models .projects import ProjectTemplateType
4443from simcore_postgres_database .models .projects_nodes import projects_nodes
4544from simcore_postgres_database .models .projects_tags import projects_tags
4645from simcore_postgres_database .models .projects_to_folders import projects_to_folders
5857 ProjectNodeCreate ,
5958 ProjectNodesRepo ,
6059)
61- from simcore_postgres_database .webserver_models import ProjectType , projects , users
60+ from simcore_postgres_database .webserver_models import (
61+ ProjectTemplateType ,
62+ ProjectType ,
63+ projects ,
64+ users ,
65+ )
6266from sqlalchemy import func , literal_column , sql
6367from sqlalchemy .dialects .postgresql import BOOLEAN , INTEGER
6468from sqlalchemy .dialects .postgresql import insert as pg_insert
You can’t perform that action at this time.
0 commit comments