mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-03-01 09:50:35 +00:00
* imported patch from old message_improvements branch w/ burnettk * wip. * merging in changes from message_improvements * remove patch files that were accidendetally added. * Added a modal for editing a correlation. Added ability to delete whole correlation keys. A little css cleanup. * * Removing migration - will add back in at the end. * The Message models API should not require page and per_age parameters, it will return all. * The Message model list should return a full json description of all messages/correlations for all containing groups. * * wip * Add import, fix class name * Getting ./bin/pyl to pass * Getting ./bin/pyl to pass * Some fe lint fixes * Some ruff fixes * Commands to nuke poetry dirs * Temp skipping of a couple tests * Getting ./bin/pyl to pass * This needs to be back in * Revert back to main * Factored out data store handling * Working on factoring out collecting messages, has test failure * Formatting * Fixed up test failures * Remove commentted out lines * Adding fields * Fix merge issue * Re-enable modal * WIP * Untested relationships * Remove correlation key table * Remove retrieval expression from uniqueness * Remove commentted out lines * WIP * WIP * WIP * WIP * WIP * Make mypy pass * Getting formatters to pass * Add migration * WIP fixing tests * WIP fixing tests * WIP fixing tests * WIP fixing tests * WIP fixing tests * Getting ./bin/pyl to pass * Fix skipped test * Fix skipped test * Getting ./bin/pyl to pass * Remove unused method * Remove unused methods * Clean up unused code * Refactor to support creating single messages from the UI * Untested support for processing one process_group * WIP test * WIP test * Filled out test * Getting ./bin/pyl to pass * Message Editor Modal Work * Change migration and add in schemas. * Swtich to using the associated branch of the process BPMN.io mods * Get the backend returning messages created from the frontend to the drop down list in the BPMN.io editor. * Merge main, fix up test * Getting ./bin/pyl to pass * Show path in location * Rename var * install packages from bpmn-js-spiffworkflow as well for local development * process group api can add and update message models now w/ burnettk * backend tests are passing now w/ burnettk * the launch message edit button is loading the editor w/ burnettk * updated bpmn-js-spiffworkflow * pyl is passing w/ burnettk * updated bpmn-js-spiffworkflow w/ burnettk * updated bpmn-js-spiffworkflow w/ burnettk * fixed console errors w/ burnettk * a couple tweaks w/ burnettk * save the message json in the new format from the mform w/ burnettk * display the correlation props in the form w/ burnettk * default to empty schema so the format is obvious * allow removing correlation props from web ui w/ burnettk * added save notification when saving a message on a process model w/ burnettk * fixed broken test w/ burnettk * Updating test cases to new message format, tests are failing * support schema from messages in frontend * Fixing tests * Fixing tests * Fixing tests * removed references to correlation keys and removed unused components w/ burnettk * removed temp mesasge model edit button w/ burnettk * Make mypy pass * Fixing tests * Fixing tests * Getting ./bin/pyl to pass * save deleted messages before attempting to add new ones w/ burnettk * set state for the message id so it can be changed w/ burnettk * do not wait for the message id to be set since it is not necessary w/ burnettk * updated bpmn-js-spiffworkflow w/ burnettk * build images for this branch w/ burnettk * put location in path of message-models so we can control permissions on it w/ burnettk * fix black * some coderabbit suggestions * pull in spiff fix * Default schema to {} * Temp fix for invalid schema * updated bpmn-js-spiffworkflow * some updates for issue 1626 * minor name tweaks and attempts to update message dropdown in panel when message changes - does not work yet w/ burnettk * updated bpmn-js-spiffworkflow w/ burnettk * attempt to call add_message.returned event when message updates w/ burnettk * treat formData as a state in the MesasgeEditor so it can be updated when the form contents is modified w/ burnettk * updated bpmn-js-spiffworkflow w/ burnettk * Feature/merge correlation properties (#1693) * Merge XML Correlation properties with Process group properties * updates for messages w/ burnettk --------- Co-authored-by: theaubmov <ayoubaitlachgar98@gmail.com> Co-authored-by: jasquat <jasquat@users.noreply.github.com> * do not wait for message id state to be set to better support new messages w/ burnettk * updated SpiffWorkflow w/ burnettk * some cleanup from coderabbit and linting * added index to message tables, run typecheck in ci, and other updates while code reviewing w/ burnettk * updated bpmn-js-spiffworkflow w/ burnettk * remove branch to build --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com> Co-authored-by: danfunk <daniel.h.funk@gmail.com> Co-authored-by: Jon Herron <jon.herron@yahoo.com> Co-authored-by: burnettk <burnettk@users.noreply.github.com> Co-authored-by: jasquat <2487833+jasquat@users.noreply.github.com> Co-authored-by: theaubmov <ayoubaitlachgar98@gmail.com>
122 lines
4.4 KiB
Python
122 lines
4.4 KiB
Python
"""Loads and sets up all database models for SQLAlchemy.
|
|
|
|
autoflake8 will remove these lines without the noqa comment
|
|
|
|
NOTE: make sure this file is ignored by reorder-python-imports since
|
|
some models need to be loaded before others for relationships and to
|
|
avoid circular imports
|
|
"""
|
|
|
|
# unused imports are needed for SQLAlchemy to load the models
|
|
# ruff: noqa: F401
|
|
|
|
# we do not want to sort imports in this file, since the order matters
|
|
# ruff: noqa: I001
|
|
|
|
from spiffworkflow_backend.models.db import add_listeners
|
|
|
|
# must load these before UserModel and GroupModel for relationships
|
|
from spiffworkflow_backend.models.user_group_assignment import (
|
|
UserGroupAssignmentModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.principal import PrincipalModel # noqa: F401
|
|
|
|
|
|
from spiffworkflow_backend.models.human_task import HumanTaskModel # noqa: F401
|
|
from spiffworkflow_backend.models.cache_generation import (
|
|
CacheGenerationModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.reference_cache import (
|
|
ReferenceCacheModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_caller import (
|
|
ProcessCallerCacheModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.message_instance import (
|
|
MessageInstanceModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.message_triggerable_process_model import (
|
|
MessageTriggerableProcessModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.permission_assignment import (
|
|
PermissionAssignmentModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.permission_target import (
|
|
PermissionTargetModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance import (
|
|
ProcessInstanceModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_report import (
|
|
ProcessInstanceReportModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.refresh_token import RefreshTokenModel # noqa: F401
|
|
from spiffworkflow_backend.models.secret_model import SecretModel # noqa: F401
|
|
from spiffworkflow_backend.models.user import UserModel # noqa: F401
|
|
from spiffworkflow_backend.models.group import GroupModel # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_metadata import (
|
|
ProcessInstanceMetadataModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_file_data import (
|
|
ProcessInstanceFileDataModel,
|
|
) # noqa: F401
|
|
|
|
from spiffworkflow_backend.models.bpmn_process import BpmnProcessModel # noqa: F401
|
|
from spiffworkflow_backend.models.bpmn_process_definition import (
|
|
BpmnProcessDefinitionModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.task import TaskModel # noqa: F401
|
|
from spiffworkflow_backend.models.task_definition import (
|
|
TaskDefinitionModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.json_data import JsonDataModel # noqa: F401
|
|
from spiffworkflow_backend.models.bpmn_process_definition_relationship import (
|
|
BpmnProcessDefinitionRelationshipModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_queue import (
|
|
ProcessInstanceQueueModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.active_user import (
|
|
ActiveUserModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_model_cycle import (
|
|
ProcessModelCycleModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.typeahead import (
|
|
TypeaheadModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.json_data_store import (
|
|
JSONDataStoreModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.kkv_data_store import (
|
|
KKVDataStoreModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.kkv_data_store_entry import (
|
|
KKVDataStoreEntryModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.task_draft_data import (
|
|
TaskDraftDataModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.configuration import (
|
|
ConfigurationModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.user_property import (
|
|
UserPropertyModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.service_account import (
|
|
ServiceAccountModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.message_model import (
|
|
MessageModel,
|
|
MessageCorrelationPropertyModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.future_task import (
|
|
FutureTaskModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.feature_flag import (
|
|
FeatureFlagModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_caller_relationship import ProcessCallerRelationshipModel # noqa: F401
|
|
|
|
add_listeners()
|