├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.rst ├── RELEASE.md ├── pyproject.toml ├── requirements.txt ├── scripts └── release.sh ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── assets │ ├── __init__.py │ ├── test_asset_tasks.py │ ├── test_asset_types.py │ └── test_assets.py ├── auth │ ├── __init__.py │ ├── test_auth_route.py │ └── test_permission.py ├── base.py ├── breakdown │ ├── __init__.py │ └── test_routes.py ├── chats │ ├── __init__.py │ ├── test_chat_routes.py │ └── test_chat_service.py ├── edits │ ├── __init__.py │ ├── base.py │ ├── test_edit_tasks.py │ └── test_edits.py ├── events │ ├── __init__.py │ └── test_event_routes.py ├── export │ ├── __init__.py │ ├── test_assets_to_csv.py │ ├── test_casting_to_csv.py │ ├── test_edits_to_csv.py │ ├── test_persons_to_csv.py │ ├── test_playlist_to_csv.py │ ├── test_projects_to_csv.py │ ├── test_shots_to_csv.py │ ├── test_task_types_to_csv.py │ ├── test_tasks_to_csv.py │ └── test_time_spents_to_csv.py ├── files │ ├── __init__.py │ ├── test_preview_files.py │ ├── test_route_file_tree.py │ ├── test_route_output_files.py │ └── test_route_working_files.py ├── fixtures │ ├── csv │ │ ├── assets.csv │ │ ├── assets_broken_01.csv │ │ ├── assets_broken_02.csv │ │ ├── assets_broken_03.csv │ │ ├── assets_no_metadata.csv │ │ ├── assets_other_delimiter.csv │ │ ├── casting.csv │ │ ├── casting_02.csv │ │ ├── persons.csv │ │ ├── projects.csv │ │ ├── shots.csv │ │ ├── shots_no_metadata.csv │ │ └── tasks.csv │ ├── playlist.csv │ ├── plugins │ │ ├── __init__.py │ │ └── hello │ │ │ ├── __init__.py │ │ │ └── resources.py │ ├── shotgun │ │ ├── assets.json │ │ ├── episodes.json │ │ ├── persons.json │ │ ├── projectconnections.json │ │ ├── projects.json │ │ ├── scenes.json │ │ ├── sequences.json │ │ ├── shots.json │ │ ├── status.json │ │ ├── steps.json │ │ ├── tasks.json │ │ └── versions.json │ ├── thumbnails │ │ ├── sample.hdr │ │ ├── th01.png │ │ ├── th02.png │ │ ├── th03.png │ │ └── th04.jpg │ └── videos │ │ ├── test_preview_tiles.mp4 │ │ └── tile01.png ├── misc │ ├── __init__.py │ ├── test_base_model.py │ ├── test_commands.py │ ├── test_date.py │ ├── test_index.py │ ├── test_paginate.py │ ├── test_plugins.py │ ├── test_query.py │ └── test_special_chars.py ├── models │ ├── __init__.py │ ├── test_comments.py │ ├── test_custom_actions.py │ ├── test_department.py │ ├── test_entity.py │ ├── test_entity_type.py │ ├── test_file_status.py │ ├── test_metadata_descriptor.py │ ├── test_output_file.py │ ├── test_output_type.py │ ├── test_person.py │ ├── test_preview_background_file.py │ ├── test_preview_file.py │ ├── test_project.py │ ├── test_project_status.py │ ├── test_schedule_item.py │ ├── test_software.py │ ├── test_status_automation.py │ ├── test_task.py │ ├── test_task_status.py │ ├── test_task_type.py │ ├── test_time_spent.py │ └── test_working_file.py ├── news │ ├── __init__.py │ └── test_route_news.py ├── persons │ ├── __init__.py │ ├── test_department.py │ ├── test_desktop_login_logs.py │ ├── test_person_cache_invalidation.py │ └── test_time_spents.py ├── playlists │ ├── __init__.py │ ├── test_annotations.py │ └── test_playlists.py ├── projects │ ├── __init__.py │ ├── test_route_all_projects.py │ ├── test_route_metadata.py │ ├── test_route_open_projects.py │ ├── test_route_schedule_items.py │ └── test_route_sync.py ├── search │ ├── __init__.py │ └── test_search.py ├── services │ ├── __init__.py │ ├── test_assets_service.py │ ├── test_auth_service.py │ ├── test_base_service.py │ ├── test_breakdown_service.py │ ├── test_budget_service.py │ ├── test_comments_service.py │ ├── test_edits_service.py │ ├── test_emails_service.py │ ├── test_entity_service.py │ ├── test_events_service.py │ ├── test_file_tree_service.py │ ├── test_files_service.py │ ├── test_index_service.py │ ├── test_names_service.py │ ├── test_news_service.py │ ├── test_notifications_service.py │ ├── test_persons_service.py │ ├── test_playlists_service.py │ ├── test_preview_files_service.py │ ├── test_projects_service.py │ ├── test_scenes_service.py │ ├── test_schedule_service.py │ ├── test_shots_service.py │ ├── test_status_automation_service.py │ ├── test_sync_service.py │ ├── test_tasks_service.py │ ├── test_time_spents_service.py │ └── test_user_service.py ├── shots │ ├── __init__.py │ ├── test_asset_instances.py │ ├── test_breakdown.py │ ├── test_episode_stats.py │ ├── test_episode_tasks.py │ ├── test_episodes.py │ ├── test_scene_tasks.py │ ├── test_scenes.py │ ├── test_sequence_tasks.py │ ├── test_sequences.py │ ├── test_shot_tasks.py │ └── test_shots.py ├── source │ ├── __init__.py │ ├── csv │ │ ├── __init__.py │ │ ├── test_import_assets.py │ │ ├── test_import_casting.py │ │ ├── test_import_persons.csv │ │ ├── test_import_persons.py │ │ └── test_import_shots.py │ └── shotgun │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_shotgun_import_assets.py │ │ ├── test_shotgun_import_episode.py │ │ ├── test_shotgun_import_errors.py │ │ ├── test_shotgun_import_notes.py │ │ ├── test_shotgun_import_persons.py │ │ ├── test_shotgun_import_project.py │ │ ├── test_shotgun_import_scene.py │ │ ├── test_shotgun_import_sequence.py │ │ ├── test_shotgun_import_shot.py │ │ ├── test_shotgun_import_status.py │ │ ├── test_shotgun_import_steps.py │ │ ├── test_shotgun_import_tasks.py │ │ ├── test_shotgun_import_teams.py │ │ └── test_shotgun_import_versions.py ├── stores │ ├── test_auth_tokens_store.py │ └── test_file_store.py ├── sync │ ├── __init__.py │ └── test_create_from_import.py ├── tasks │ ├── __init__.py │ ├── test_publish.py │ ├── test_route_task_change.py │ ├── test_route_tasks.py │ ├── test_route_time_spent.py │ └── test_subscription.py ├── thumbnails │ ├── __init__.py │ └── test_route_thumbnail.py ├── tiles │ ├── __init__.py │ └── test_route_tiles.py ├── user │ ├── __init__.py │ └── test_route_context.py └── utils │ ├── __init__.py │ ├── preview01_tile.png │ ├── test_cache.py │ ├── test_events.py │ ├── test_movie.py │ ├── test_thumbnail.py │ ├── test_tile.py │ └── test_utils.py └── zou ├── __init__.py ├── app ├── __init__.py ├── api.py ├── blueprints │ ├── __init__.py │ ├── assets │ │ ├── __init__.py │ │ └── resources.py │ ├── auth │ │ ├── __init__.py │ │ └── resources.py │ ├── breakdown │ │ ├── __init__.py │ │ └── resources.py │ ├── chats │ │ ├── __init__.py │ │ └── resources.py │ ├── comments │ │ ├── __init__.py │ │ └── resources.py │ ├── concepts │ │ ├── __init__.py │ │ └── resources.py │ ├── crud │ │ ├── __init__.py │ │ ├── asset_instance.py │ │ ├── attachment_file.py │ │ ├── base.py │ │ ├── budget.py │ │ ├── budget_entry.py │ │ ├── chat.py │ │ ├── chat_message.py │ │ ├── comments.py │ │ ├── custom_action.py │ │ ├── day_off.py │ │ ├── department.py │ │ ├── entity.py │ │ ├── entity_link.py │ │ ├── entity_type.py │ │ ├── event.py │ │ ├── file_status.py │ │ ├── hardware_item.py │ │ ├── metadata_descriptor.py │ │ ├── milestone.py │ │ ├── news.py │ │ ├── notification.py │ │ ├── organisation.py │ │ ├── output_file.py │ │ ├── output_type.py │ │ ├── person.py │ │ ├── playlist.py │ │ ├── plugin.py │ │ ├── preview_background_file.py │ │ ├── preview_file.py │ │ ├── production_schedule_version.py │ │ ├── project.py │ │ ├── project_status.py │ │ ├── salary_scale.py │ │ ├── schedule_item.py │ │ ├── search_filter.py │ │ ├── search_filter_group.py │ │ ├── software.py │ │ ├── status_automation.py │ │ ├── studio.py │ │ ├── subscription.py │ │ ├── task.py │ │ ├── task_status.py │ │ ├── task_type.py │ │ ├── time_spent.py │ │ └── working_file.py │ ├── departments │ │ ├── __init__.py │ │ └── resources.py │ ├── edits │ │ ├── __init__.py │ │ └── resources.py │ ├── entities │ │ ├── __init__.py │ │ └── resources.py │ ├── events │ │ ├── __init__.py │ │ └── resources.py │ ├── export │ │ ├── __init__.py │ │ └── csv │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── base.py │ │ │ ├── casting.py │ │ │ ├── edits.py │ │ │ ├── persons.py │ │ │ ├── playlists.py │ │ │ ├── projects.py │ │ │ ├── shots.py │ │ │ ├── task_types.py │ │ │ ├── tasks.py │ │ │ └── time_spents.py │ ├── files │ │ ├── __init__.py │ │ └── resources.py │ ├── index │ │ ├── __init__.py │ │ └── resources.py │ ├── news │ │ ├── __init__.py │ │ └── resources.py │ ├── persons │ │ ├── __init__.py │ │ └── resources.py │ ├── playlists │ │ ├── __init__.py │ │ └── resources.py │ ├── previews │ │ ├── __init__.py │ │ └── resources.py │ ├── projects │ │ ├── __init__.py │ │ └── resources.py │ ├── search │ │ ├── __init__.py │ │ └── resources.py │ ├── shots │ │ ├── __init__.py │ │ └── resources.py │ ├── source │ │ ├── __init__.py │ │ ├── csv │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── base.py │ │ │ ├── casting.py │ │ │ ├── edits.py │ │ │ ├── persons.py │ │ │ ├── shots.py │ │ │ └── task_type_estimations.py │ │ ├── kitsu.py │ │ ├── otio.py │ │ └── shotgun │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── base.py │ │ │ ├── episode.py │ │ │ ├── exception.py │ │ │ ├── import_errors.py │ │ │ ├── notes.py │ │ │ ├── person.py │ │ │ ├── project.py │ │ │ ├── scene.py │ │ │ ├── sequence.py │ │ │ ├── shot.py │ │ │ ├── status.py │ │ │ ├── steps.py │ │ │ ├── tasks.py │ │ │ ├── team.py │ │ │ └── versions.py │ ├── tasks │ │ ├── __init__.py │ │ └── resources.py │ └── user │ │ ├── __init__.py │ │ └── resources.py ├── config.py ├── file_trees │ ├── default.json │ └── simple.json ├── indexer │ ├── __init__.py │ └── indexing.py ├── mixin.py ├── models │ ├── __init__.py │ ├── asset_instance.py │ ├── attachment_file.py │ ├── base.py │ ├── budget.py │ ├── budget_entry.py │ ├── build_job.py │ ├── chat.py │ ├── chat_message.py │ ├── comment.py │ ├── custom_action.py │ ├── data_import_error.py │ ├── day_off.py │ ├── department.py │ ├── desktop_login_log.py │ ├── entity.py │ ├── entity_type.py │ ├── event.py │ ├── file_status.py │ ├── hardware_item.py │ ├── login_log.py │ ├── metadata_descriptor.py │ ├── milestone.py │ ├── news.py │ ├── notification.py │ ├── organisation.py │ ├── output_file.py │ ├── output_type.py │ ├── person.py │ ├── playlist.py │ ├── plugin.py │ ├── preview_background_file.py │ ├── preview_file.py │ ├── production_schedule_version.py │ ├── project.py │ ├── project_status.py │ ├── salary_scale.py │ ├── schedule_item.py │ ├── search_filter.py │ ├── search_filter_group.py │ ├── serializer.py │ ├── software.py │ ├── status_automation.py │ ├── studio.py │ ├── subscription.py │ ├── task.py │ ├── task_status.py │ ├── task_type.py │ ├── time_spent.py │ └── working_file.py ├── services │ ├── __init__.py │ ├── assets_service.py │ ├── auth_service.py │ ├── backup_service.py │ ├── base_service.py │ ├── breakdown_service.py │ ├── budget_service.py │ ├── chats_service.py │ ├── comments_service.py │ ├── concepts_service.py │ ├── custom_actions_service.py │ ├── deletion_service.py │ ├── departments_service.py │ ├── edits_service.py │ ├── emails_service.py │ ├── entities_service.py │ ├── events_service.py │ ├── exception.py │ ├── file_tree_service.py │ ├── files_service.py │ ├── index_service.py │ ├── names_service.py │ ├── news_service.py │ ├── notifications_service.py │ ├── persons_service.py │ ├── playlists_service.py │ ├── plugins_service.py │ ├── preview_files_service.py │ ├── projects_service.py │ ├── scenes_service.py │ ├── schedule_service.py │ ├── shots_service.py │ ├── stats_service.py │ ├── status_automations_service.py │ ├── sync_service.py │ ├── tasks_service.py │ ├── telemetry_services.py │ ├── templates_service.py │ ├── time_spents_service.py │ └── user_service.py ├── stores │ ├── __init__.py │ ├── auth_tokens_store.py │ ├── file_store.py │ ├── publisher_store.py │ └── queue_store.py ├── swagger.py └── utils │ ├── __init__.py │ ├── api.py │ ├── auth.py │ ├── cache.py │ ├── chats.py │ ├── colors.py │ ├── commands.py │ ├── csv_utils.py │ ├── date_helpers.py │ ├── dbhelpers.py │ ├── emails.py │ ├── env.py │ ├── events.py │ ├── fido.py │ ├── fields.py │ ├── flask.py │ ├── fs.py │ ├── git.py │ ├── logs.py │ ├── monitoring.py │ ├── permissions.py │ ├── plugins.py │ ├── query.py │ ├── redis.py │ ├── remote_job.py │ ├── saml.py │ ├── shell.py │ ├── string.py │ └── thumbnail.py ├── cli.py ├── debug.py ├── event_stream.py ├── job_settings.py ├── migrations ├── README ├── __init__.py ├── alembic.ini ├── env.py ├── script.py.mako ├── utils │ ├── __init__.py │ └── base.py └── versions │ ├── 003be8a91001_add_start_and_end_dates_to_projects.py │ ├── 0596674df51d_add_department_mentions_to_comments.py │ ├── 05ac7e8caa21_remove_unique_constraint_for_taskstatus_.py │ ├── 05b7dc79a416_add_archived_fields_to_main_tables.py │ ├── 06552e22f9e7_add_comment_updated_by.py │ ├── 0bd1e89f2a6f_add_productionscheduleversiontasklink_uc.py │ ├── 0c05b22194f3_add_performance_indexes.py │ ├── 0cf5e0e035fa_drop_column_tasktype_for_shots.py │ ├── 0ec3762a745d_add_attachment_table.py │ ├── 0ef6416a507b_.py │ ├── 10cf267d95c9_fix_schedule_item.py │ ├── 16328eae4b5f_add_new_constraint_for_timespent.py │ ├── 16df47d76c64_add_some_indexes.py │ ├── 17ef8f7be758_disallow_null_choicetype.py │ ├── 1b0ab951adca_add_reply_id_to_attachments.py │ ├── 1bb55759146f_add_table_studio.py │ ├── 1cb44194db49_add_file_size_field_to_preview_file.py │ ├── 1e150c2cea4d_add_nb_entities_out.py │ ├── 1e2d77a2f0c4_add_hd_by_default_column.py │ ├── 1fab8c420678_add_attachments_to_message_chats.py │ ├── 20a8ad264659_tasktypeassettypelink_.py │ ├── 20dfeb36142b_add_projecttaskstatuslink_roles_for_.py │ ├── 23122f290ca2_add_entity_chat_models.py │ ├── 269d41bfb73f_add_entity_entity_links.py │ ├── 26f96f65cfa3_add_productionversionschedule_uc.py │ ├── 2762a797f1f9_add_people_salary_information.py │ ├── 29df910f04a4_create_unique_constraint_project_id_.py │ ├── 29fe01a6c9eb_add_status_automation_field.py │ ├── 2adc020885fa_.py │ ├── 2baede80b111_add_entity_status_field.py │ ├── 306266361f4f_.py │ ├── 307edd8c639d_change_comment_updated_by_in_comment_.py │ ├── 328fd44c6347_add_entity_created_by.py │ ├── 32f134ff1201_add_is_shared_flag_to_filters.py │ ├── 346250b5304c_add_position_to_preview_files.py │ ├── 3476e147e632_add_acks_to_comments.py │ ├── 389cfb9de776_.py │ ├── 38baa9a23b3d_.py │ ├── 398150912a3f_validation_status_preview.py │ ├── 3b0d1321079e_.py │ ├── 3d5c93bafb9d_.py │ ├── 3d8e68dffeee_fix_task_person_link.py │ ├── 3e0538ddf80f_.py │ ├── 3fee3bd10f9d_.py │ ├── 4095103c7d01_add_is_clients_isolated_flag_to_projects.py │ ├── 40dea9555940_.py │ ├── 42ec83db6a01_change_person_preferred_two_factor_.py │ ├── 4368137b44e1_productionscheduleversion_add_on_delete_.py │ ├── 43d0cf0ed5e7_.py │ ├── 443d1e78a932_.py │ ├── 45c2de366e66_.py │ ├── 45dafbb3f4e1_for_person_contract_type_disallow_null.py │ ├── 45f739ef962a_add_people_salary_scale_table.py │ ├── 4715c2586036_add_last_preview_file_fields.py │ ├── 4aab1f84ad72_introduce_plugin_table.py │ ├── 4bd9bfb73f11_add_fields_to_the_software_table.py │ ├── 4d585b6956f2_add_taskstatus_is_wip.py │ ├── 4e3738cdc34c_.py │ ├── 4f2398ebcd49_.py │ ├── 523ee9647bee_.py │ ├── 539a3a00c417_for_departmentlink_index_person_id_.py │ ├── 54ee0d1d60ba_add_build_job_model.py │ ├── 556526e47daa_.py │ ├── 57222395f2be_add_statusautomation_import_last_revision.py │ ├── 5798d2c9020b_change_person_role_to_choicetype.py │ ├── 590aa1ffe731_add_notifications_enabled_flag.py │ ├── 59a7445a966c_add_entity_is_shared.py │ ├── 5a291251823c_add_max_retake_parameter.py │ ├── 5ab9d7a75887_.py │ ├── 5b0fcbb94f24_.py │ ├── 5b7fa3e51701_add_is_client_allowed_flag_to_task_.py │ ├── 5b980f0dc365_add_comment_links.py │ ├── 5b9fd9ddfe43_add_homepage_and_contract_fields.py │ ├── 5c0498e264bc_add_slack_fields.py │ ├── 5e2ce62632a6_add_workflow_to_project.py │ ├── 5f1620d191af_add_playlist_id_field_to_notification.py │ ├── 5f715f2b6348_add_new_table_productionscheduleversion.py │ ├── 680c64565f9d_for_searchfiltergroup_is_shared.py │ ├── 693cc511d28d_add_taskstatus_priority.py │ ├── 6aa446ee4072_add_is_for_all_flage_to_playlists.py │ ├── 6bd3b102d61b_.py │ ├── 6c597e842afa_add_task_type_field_to_playlists.py │ ├── 6d1b2c60f58b_add_milestone_model.py │ ├── 6d7fa5a8e9a5_add_timesheets_locked_field_to_org.py │ ├── 6eeaff945706_add_data_field_on_entity_links.py │ ├── 6f6049877105_.py │ ├── 71d546ace0ee_add_performance_indexes.py │ ├── 7417c8eb70d8_add_for_entity_field_to_playlists.py │ ├── 772a5e43f05b_.py │ ├── 7748d3d22925_add_columns_to_searchfilter_table_to_.py │ ├── 77d6820f494f_add_reply_to_notif.py │ ├── 7a16258f2fab_add_currency_field_to_budgets.py │ ├── 7b1f765677d8_.py │ ├── 7bc746997e8d_add_slack_token_field_to_organisation.py │ ├── 7dc79d4ed7cd_.py │ ├── 818f7bda2528_.py │ ├── 82e7f7a95e84_add_project_id_to_events.py │ ├── 82ee682204ab_add_is_generated_from_ldap_column_to_.py │ ├── 83e2f33a9b14_add_project_bugdet_table.py │ ├── 8588f254d6b8_add_archived_fields.py │ ├── 8739ae9fa28b_add_for_client_field.py │ ├── 87efceb6745b_add_ready_for_to_entity.py │ ├── 892b264937ec_.py │ ├── 8a1b4a1b7f4a_add_totp_columns_for_person.py │ ├── 8ab98c178903_add_budget_entry_table.py │ ├── 8e4f39e321f4_add_day_off_table.py │ ├── 8e67c183bed7_add_preference_fields.py │ ├── 8fbd40afbe5f_allow_to_set_float_values_for_.py │ ├── 9010a64e5a2d_add_indices.py │ ├── 9060dd4f6116_notification_uc.py │ ├── 925771029620_.py │ ├── 92b40d79ad3f_allow_message_attachments.py │ ├── 92bdfe07e5f5_discord_integration.py │ ├── 956659992419_add_columns_for_person_to_store_fido_.py │ ├── 9683bd840dee_add_archived_field_to_software.py │ ├── 96c79d31e648_add_mail_otp_columns_for_person.py │ ├── 96f58a4a2a58_person_partial_index_for_email_only_.py │ ├── 971dbf5a0faf_add_short_name_for_asset_type_entity_.py │ ├── 98c90621cf58_add_for_client_flag_to_playlist.py │ ├── 99825b9cc778_.py │ ├── 9a09467f9b2c_.py │ ├── 9af2df17a9d5_add_hardware_table.py │ ├── 9b85c14fa8a7_add_day_off_new_columns.py │ ├── 9bd17364fc18_.py │ ├── 9d3bb33c6fc6_add_department_keys_to_filter_models.py │ ├── 9e5b3a9b0cee_add_new_column_metadatadescriptor_data_type_.py │ ├── 9f8445f9b42c_add_man_days_fields.py │ ├── a0f668430352_add_created_by_field_to_playlists.py │ ├── a1b2c3d4e5f6_add_position_to_metadata_descriptor.py │ ├── a23682ccc1f1_.py │ ├── a252a094e977_add_descriptions_for_entities_tasks_and_.py │ ├── a519c710877c_.py │ ├── a65bdadbae2f_.py │ ├── a66508788c53_add_nb_assets_ready.py │ ├── a6c25eed3ea1_add_login_failed_attemps_and_last_login_.py │ ├── a7c43f3fbc76_add_duration_column_to_the_preview_file.py │ ├── aa0a60033106_feedback_request.py │ ├── addbad59c706_allow_to_manage_drawings_instead_of_.py │ ├── addbbefa7028_add_departments_link_to_metadata_.py │ ├── ae0127f2fc56_add_previewfile_width_and_previewfile_.py │ ├── af1790868e2c_.py │ ├── b45cb782bb9c_.py │ ├── b4dd0add5f79_.py │ ├── b8c0a0f9d054_drop_task_status_is_reviewable.py │ ├── b8ed0fb263f8_add_person_jti_and_jti_expiration_date.py │ ├── b97a71306fc8_add_is_casting_standby_column_to_entity.py │ ├── be56dc0fb760_for_is_shared_disallow_nullable.py │ ├── bf1347acdee2_.py │ ├── c49e41f1298b_add_previewbackground.py │ ├── c68c2a62cfac_add_mimetype_column_to_attachment.py │ ├── c726b98be194_.py │ ├── c81f3e83bdb5_.py │ ├── ca28796a2a62_add_is_done_field_to_the_task_model.py │ ├── ce7f46f445dc_add_column_estimation_for_.py │ ├── cf3d365de164_add_entity_version_model.py │ ├── cf6cec6d6bf5_add_status_field_to_preview_file.py │ ├── d25118cddcaa_modify_salary_scale_model.py │ ├── d5665dca188b_add_version_field_to_software.py │ ├── d80267806131_task_status_new_column_is_default.py │ ├── d80f02824047_add_plugin_revision.py │ ├── d8dcd5196d57_add_casting_label.py │ ├── d97f2730bf7b_add_.py │ ├── dde6be40f54f_add_departement_links_tables_for_.py │ ├── de8a3de227ef_.py │ ├── deeacd38d373_for_projecttaskstatuslink_set_default_.py │ ├── df1834485f57_.py │ ├── df9f8a147e80_change_file_size_to_big_integer.py │ ├── e1ef93f40d3d_.py │ ├── e29638428dfd_add_schedule_item_table.py │ ├── e3f6db74cc1e_.py │ ├── e4b48ca33539_add_project_production_schedule_version_.py │ ├── e7e633bd6fa2_add_exceptions_to_budget_entries.py │ ├── e839d6603c09_add_person_id_to_shot_history.py │ ├── e8bc24998b34_remove_on_delete_cascade_for_.py │ ├── ee2373fbe3a4_.py │ ├── f0567e8d0c62_.py │ ├── f0c6cbb61869_add_production_style_field.py │ ├── f344b867a911_for_description_of_entity_task_working_.py │ ├── f4ff5a73d283_add_person_ldap_uid.py │ ├── f5b113876a49_add_preferred_two_factor_authentication_.py │ ├── f5bdca075cdc_add_preview_download_flag_to_projects.py │ ├── f874ad5e898a_add_link_entity_type_task_type.py │ ├── f995b28fb749_.py │ ├── fb6b6f188497_.py │ ├── fb87feaaa094_add_missing_unique_constraints.py │ ├── fba149993140_add_missing_index.py │ ├── fc322f908695_.py │ ├── fee7c696166e_.py │ ├── feffd3c5b806_introduce_concepts.py │ └── ffeed4956ab1_add_more_details_to_projects.py ├── plugin_template ├── __init__.py ├── logo.png ├── manifest.toml ├── migrations │ ├── alembic.ini │ ├── env.py │ └── script.py.mako ├── models.py └── routes.py ├── remote ├── __init__.py ├── config_payload.py ├── normalize_movie.py └── playlist.py └── utils ├── __init__.py └── movie.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/RELEASE.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 79 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e .[dev,test] 2 | -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/test_asset_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/assets/test_asset_tasks.py -------------------------------------------------------------------------------- /tests/assets/test_asset_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/assets/test_asset_types.py -------------------------------------------------------------------------------- /tests/assets/test_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/assets/test_assets.py -------------------------------------------------------------------------------- /tests/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth/test_auth_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/auth/test_auth_route.py -------------------------------------------------------------------------------- /tests/auth/test_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/auth/test_permission.py -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/breakdown/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/breakdown/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/breakdown/test_routes.py -------------------------------------------------------------------------------- /tests/chats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/chats/test_chat_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/chats/test_chat_routes.py -------------------------------------------------------------------------------- /tests/chats/test_chat_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/chats/test_chat_service.py -------------------------------------------------------------------------------- /tests/edits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/edits/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/edits/base.py -------------------------------------------------------------------------------- /tests/edits/test_edit_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/edits/test_edit_tasks.py -------------------------------------------------------------------------------- /tests/edits/test_edits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/edits/test_edits.py -------------------------------------------------------------------------------- /tests/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/events/test_event_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/events/test_event_routes.py -------------------------------------------------------------------------------- /tests/export/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/export/test_assets_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_assets_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_casting_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_casting_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_edits_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_edits_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_persons_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_persons_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_playlist_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_playlist_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_projects_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_projects_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_shots_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_shots_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_task_types_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_task_types_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_tasks_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_tasks_to_csv.py -------------------------------------------------------------------------------- /tests/export/test_time_spents_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/export/test_time_spents_to_csv.py -------------------------------------------------------------------------------- /tests/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/test_preview_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/files/test_preview_files.py -------------------------------------------------------------------------------- /tests/files/test_route_file_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/files/test_route_file_tree.py -------------------------------------------------------------------------------- /tests/files/test_route_output_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/files/test_route_output_files.py -------------------------------------------------------------------------------- /tests/files/test_route_working_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/files/test_route_working_files.py -------------------------------------------------------------------------------- /tests/fixtures/csv/assets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/assets.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/assets_broken_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/assets_broken_01.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/assets_broken_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/assets_broken_02.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/assets_broken_03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/assets_broken_03.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/assets_no_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/assets_no_metadata.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/assets_other_delimiter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/assets_other_delimiter.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/casting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/casting.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/casting_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/casting_02.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/persons.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/projects.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/shots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/shots.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/shots_no_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/shots_no_metadata.csv -------------------------------------------------------------------------------- /tests/fixtures/csv/tasks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/csv/tasks.csv -------------------------------------------------------------------------------- /tests/fixtures/playlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/playlist.csv -------------------------------------------------------------------------------- /tests/fixtures/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/plugins/hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/plugins/hello/__init__.py -------------------------------------------------------------------------------- /tests/fixtures/plugins/hello/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/plugins/hello/resources.py -------------------------------------------------------------------------------- /tests/fixtures/shotgun/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/assets.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/episodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/episodes.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/persons.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/projectconnections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/projectconnections.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/projects.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/scenes.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/sequences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/sequences.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/shots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/shots.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/status.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/steps.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/tasks.json -------------------------------------------------------------------------------- /tests/fixtures/shotgun/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/shotgun/versions.json -------------------------------------------------------------------------------- /tests/fixtures/thumbnails/sample.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/thumbnails/sample.hdr -------------------------------------------------------------------------------- /tests/fixtures/thumbnails/th01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/thumbnails/th01.png -------------------------------------------------------------------------------- /tests/fixtures/thumbnails/th02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/thumbnails/th02.png -------------------------------------------------------------------------------- /tests/fixtures/thumbnails/th03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/thumbnails/th03.png -------------------------------------------------------------------------------- /tests/fixtures/thumbnails/th04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/thumbnails/th04.jpg -------------------------------------------------------------------------------- /tests/fixtures/videos/test_preview_tiles.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/videos/test_preview_tiles.mp4 -------------------------------------------------------------------------------- /tests/fixtures/videos/tile01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/fixtures/videos/tile01.png -------------------------------------------------------------------------------- /tests/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/test_base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_base_model.py -------------------------------------------------------------------------------- /tests/misc/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_commands.py -------------------------------------------------------------------------------- /tests/misc/test_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_date.py -------------------------------------------------------------------------------- /tests/misc/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_index.py -------------------------------------------------------------------------------- /tests/misc/test_paginate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_paginate.py -------------------------------------------------------------------------------- /tests/misc/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_plugins.py -------------------------------------------------------------------------------- /tests/misc/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_query.py -------------------------------------------------------------------------------- /tests/misc/test_special_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/misc/test_special_chars.py -------------------------------------------------------------------------------- /tests/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models/test_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_comments.py -------------------------------------------------------------------------------- /tests/models/test_custom_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_custom_actions.py -------------------------------------------------------------------------------- /tests/models/test_department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_department.py -------------------------------------------------------------------------------- /tests/models/test_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_entity.py -------------------------------------------------------------------------------- /tests/models/test_entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_entity_type.py -------------------------------------------------------------------------------- /tests/models/test_file_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_file_status.py -------------------------------------------------------------------------------- /tests/models/test_metadata_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_metadata_descriptor.py -------------------------------------------------------------------------------- /tests/models/test_output_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_output_file.py -------------------------------------------------------------------------------- /tests/models/test_output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_output_type.py -------------------------------------------------------------------------------- /tests/models/test_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_person.py -------------------------------------------------------------------------------- /tests/models/test_preview_background_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_preview_background_file.py -------------------------------------------------------------------------------- /tests/models/test_preview_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_preview_file.py -------------------------------------------------------------------------------- /tests/models/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_project.py -------------------------------------------------------------------------------- /tests/models/test_project_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_project_status.py -------------------------------------------------------------------------------- /tests/models/test_schedule_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_schedule_item.py -------------------------------------------------------------------------------- /tests/models/test_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_software.py -------------------------------------------------------------------------------- /tests/models/test_status_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_status_automation.py -------------------------------------------------------------------------------- /tests/models/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_task.py -------------------------------------------------------------------------------- /tests/models/test_task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_task_status.py -------------------------------------------------------------------------------- /tests/models/test_task_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_task_type.py -------------------------------------------------------------------------------- /tests/models/test_time_spent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_time_spent.py -------------------------------------------------------------------------------- /tests/models/test_working_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/models/test_working_file.py -------------------------------------------------------------------------------- /tests/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/news/test_route_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/news/test_route_news.py -------------------------------------------------------------------------------- /tests/persons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/persons/test_department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/persons/test_department.py -------------------------------------------------------------------------------- /tests/persons/test_desktop_login_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/persons/test_desktop_login_logs.py -------------------------------------------------------------------------------- /tests/persons/test_person_cache_invalidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/persons/test_person_cache_invalidation.py -------------------------------------------------------------------------------- /tests/persons/test_time_spents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/persons/test_time_spents.py -------------------------------------------------------------------------------- /tests/playlists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/playlists/test_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/playlists/test_annotations.py -------------------------------------------------------------------------------- /tests/playlists/test_playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/playlists/test_playlists.py -------------------------------------------------------------------------------- /tests/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/test_route_all_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/projects/test_route_all_projects.py -------------------------------------------------------------------------------- /tests/projects/test_route_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/projects/test_route_metadata.py -------------------------------------------------------------------------------- /tests/projects/test_route_open_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/projects/test_route_open_projects.py -------------------------------------------------------------------------------- /tests/projects/test_route_schedule_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/projects/test_route_schedule_items.py -------------------------------------------------------------------------------- /tests/projects/test_route_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/projects/test_route_sync.py -------------------------------------------------------------------------------- /tests/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/search/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/search/test_search.py -------------------------------------------------------------------------------- /tests/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/services/test_assets_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_assets_service.py -------------------------------------------------------------------------------- /tests/services/test_auth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_auth_service.py -------------------------------------------------------------------------------- /tests/services/test_base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_base_service.py -------------------------------------------------------------------------------- /tests/services/test_breakdown_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_breakdown_service.py -------------------------------------------------------------------------------- /tests/services/test_budget_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_budget_service.py -------------------------------------------------------------------------------- /tests/services/test_comments_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_comments_service.py -------------------------------------------------------------------------------- /tests/services/test_edits_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_edits_service.py -------------------------------------------------------------------------------- /tests/services/test_emails_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_emails_service.py -------------------------------------------------------------------------------- /tests/services/test_entity_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_entity_service.py -------------------------------------------------------------------------------- /tests/services/test_events_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_events_service.py -------------------------------------------------------------------------------- /tests/services/test_file_tree_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_file_tree_service.py -------------------------------------------------------------------------------- /tests/services/test_files_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_files_service.py -------------------------------------------------------------------------------- /tests/services/test_index_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_index_service.py -------------------------------------------------------------------------------- /tests/services/test_names_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_names_service.py -------------------------------------------------------------------------------- /tests/services/test_news_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_news_service.py -------------------------------------------------------------------------------- /tests/services/test_notifications_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_notifications_service.py -------------------------------------------------------------------------------- /tests/services/test_persons_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_persons_service.py -------------------------------------------------------------------------------- /tests/services/test_playlists_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_playlists_service.py -------------------------------------------------------------------------------- /tests/services/test_preview_files_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_preview_files_service.py -------------------------------------------------------------------------------- /tests/services/test_projects_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_projects_service.py -------------------------------------------------------------------------------- /tests/services/test_scenes_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_scenes_service.py -------------------------------------------------------------------------------- /tests/services/test_schedule_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_schedule_service.py -------------------------------------------------------------------------------- /tests/services/test_shots_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_shots_service.py -------------------------------------------------------------------------------- /tests/services/test_status_automation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_status_automation_service.py -------------------------------------------------------------------------------- /tests/services/test_sync_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_sync_service.py -------------------------------------------------------------------------------- /tests/services/test_tasks_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_tasks_service.py -------------------------------------------------------------------------------- /tests/services/test_time_spents_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_time_spents_service.py -------------------------------------------------------------------------------- /tests/services/test_user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/services/test_user_service.py -------------------------------------------------------------------------------- /tests/shots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shots/test_asset_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_asset_instances.py -------------------------------------------------------------------------------- /tests/shots/test_breakdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_breakdown.py -------------------------------------------------------------------------------- /tests/shots/test_episode_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_episode_stats.py -------------------------------------------------------------------------------- /tests/shots/test_episode_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_episode_tasks.py -------------------------------------------------------------------------------- /tests/shots/test_episodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_episodes.py -------------------------------------------------------------------------------- /tests/shots/test_scene_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_scene_tasks.py -------------------------------------------------------------------------------- /tests/shots/test_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_scenes.py -------------------------------------------------------------------------------- /tests/shots/test_sequence_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_sequence_tasks.py -------------------------------------------------------------------------------- /tests/shots/test_sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_sequences.py -------------------------------------------------------------------------------- /tests/shots/test_shot_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_shot_tasks.py -------------------------------------------------------------------------------- /tests/shots/test_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/shots/test_shots.py -------------------------------------------------------------------------------- /tests/source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/source/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/source/csv/test_import_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/csv/test_import_assets.py -------------------------------------------------------------------------------- /tests/source/csv/test_import_casting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/csv/test_import_casting.py -------------------------------------------------------------------------------- /tests/source/csv/test_import_persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/csv/test_import_persons.csv -------------------------------------------------------------------------------- /tests/source/csv/test_import_persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/csv/test_import_persons.py -------------------------------------------------------------------------------- /tests/source/csv/test_import_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/csv/test_import_shots.py -------------------------------------------------------------------------------- /tests/source/shotgun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/source/shotgun/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/base.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_assets.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_episode.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_errors.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_notes.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_persons.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_project.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_scene.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_sequence.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_shot.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_status.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_steps.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_tasks.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_teams.py -------------------------------------------------------------------------------- /tests/source/shotgun/test_shotgun_import_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/source/shotgun/test_shotgun_import_versions.py -------------------------------------------------------------------------------- /tests/stores/test_auth_tokens_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/stores/test_auth_tokens_store.py -------------------------------------------------------------------------------- /tests/stores/test_file_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/stores/test_file_store.py -------------------------------------------------------------------------------- /tests/sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sync/test_create_from_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/sync/test_create_from_import.py -------------------------------------------------------------------------------- /tests/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tasks/test_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/tasks/test_publish.py -------------------------------------------------------------------------------- /tests/tasks/test_route_task_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/tasks/test_route_task_change.py -------------------------------------------------------------------------------- /tests/tasks/test_route_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/tasks/test_route_tasks.py -------------------------------------------------------------------------------- /tests/tasks/test_route_time_spent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/tasks/test_route_time_spent.py -------------------------------------------------------------------------------- /tests/tasks/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/tasks/test_subscription.py -------------------------------------------------------------------------------- /tests/thumbnails/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/thumbnails/test_route_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/thumbnails/test_route_thumbnail.py -------------------------------------------------------------------------------- /tests/tiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tiles/test_route_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/tiles/test_route_tiles.py -------------------------------------------------------------------------------- /tests/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/user/test_route_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/user/test_route_context.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/preview01_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/utils/preview01_tile.png -------------------------------------------------------------------------------- /tests/utils/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/utils/test_cache.py -------------------------------------------------------------------------------- /tests/utils/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/utils/test_events.py -------------------------------------------------------------------------------- /tests/utils/test_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/utils/test_movie.py -------------------------------------------------------------------------------- /tests/utils/test_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/utils/test_thumbnail.py -------------------------------------------------------------------------------- /tests/utils/test_tile.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/tests/utils/test_utils.py -------------------------------------------------------------------------------- /zou/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.2" 2 | -------------------------------------------------------------------------------- /zou/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/__init__.py -------------------------------------------------------------------------------- /zou/app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/api.py -------------------------------------------------------------------------------- /zou/app/blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/blueprints/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/assets/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/assets/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/assets/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/auth/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/auth/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/auth/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/breakdown/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/breakdown/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/breakdown/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/breakdown/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/chats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/chats/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/chats/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/chats/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/comments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/comments/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/comments/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/comments/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/concepts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/concepts/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/concepts/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/concepts/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/asset_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/asset_instance.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/attachment_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/attachment_file.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/base.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/budget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/budget.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/budget_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/budget_entry.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/chat.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/chat_message.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/comments.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/custom_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/custom_action.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/day_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/day_off.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/department.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/entity.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/entity_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/entity_link.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/entity_type.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/event.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/file_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/file_status.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/hardware_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/hardware_item.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/metadata_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/metadata_descriptor.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/milestone.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/news.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/notification.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/organisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/organisation.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/output_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/output_file.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/output_type.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/person.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/playlist.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/plugin.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/preview_background_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/preview_background_file.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/preview_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/preview_file.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/production_schedule_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/production_schedule_version.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/project.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/project_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/project_status.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/salary_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/salary_scale.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/schedule_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/schedule_item.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/search_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/search_filter.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/search_filter_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/search_filter_group.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/software.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/status_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/status_automation.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/studio.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/subscription.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/task.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/task_status.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/task_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/task_type.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/time_spent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/time_spent.py -------------------------------------------------------------------------------- /zou/app/blueprints/crud/working_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/crud/working_file.py -------------------------------------------------------------------------------- /zou/app/blueprints/departments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/departments/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/departments/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/departments/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/edits/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/edits/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/edits/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/edits/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/entities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/entities/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/entities/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/entities/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/events/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/events/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/events/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/assets.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/base.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/casting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/casting.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/edits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/edits.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/persons.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/playlists.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/projects.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/shots.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/task_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/task_types.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/tasks.py -------------------------------------------------------------------------------- /zou/app/blueprints/export/csv/time_spents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/export/csv/time_spents.py -------------------------------------------------------------------------------- /zou/app/blueprints/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/files/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/files/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/files/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/index/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/index/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/index/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/index/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/news/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/news/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/news/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/news/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/persons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/persons/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/persons/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/persons/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/playlists/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/playlists/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/playlists/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/playlists/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/previews/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/previews/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/previews/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/previews/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/projects/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/projects/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/projects/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/search/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/search/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/search/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/shots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/shots/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/shots/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/shots/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/csv/assets.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/csv/base.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/casting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/csv/casting.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/edits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/csv/edits.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/csv/persons.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/csv/shots.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/csv/task_type_estimations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/csv/task_type_estimations.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/kitsu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/kitsu.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/otio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/otio.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/assets.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/base.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/episode.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/exception.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/import_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/import_errors.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/notes.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/person.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/project.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/scene.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/sequence.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/shot.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/status.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/steps.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/tasks.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/team.py -------------------------------------------------------------------------------- /zou/app/blueprints/source/shotgun/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/source/shotgun/versions.py -------------------------------------------------------------------------------- /zou/app/blueprints/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/tasks/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/tasks/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/tasks/resources.py -------------------------------------------------------------------------------- /zou/app/blueprints/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/user/__init__.py -------------------------------------------------------------------------------- /zou/app/blueprints/user/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/blueprints/user/resources.py -------------------------------------------------------------------------------- /zou/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/config.py -------------------------------------------------------------------------------- /zou/app/file_trees/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/file_trees/default.json -------------------------------------------------------------------------------- /zou/app/file_trees/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/file_trees/simple.json -------------------------------------------------------------------------------- /zou/app/indexer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/indexer/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/indexer/indexing.py -------------------------------------------------------------------------------- /zou/app/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/mixin.py -------------------------------------------------------------------------------- /zou/app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/models/asset_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/asset_instance.py -------------------------------------------------------------------------------- /zou/app/models/attachment_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/attachment_file.py -------------------------------------------------------------------------------- /zou/app/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/base.py -------------------------------------------------------------------------------- /zou/app/models/budget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/budget.py -------------------------------------------------------------------------------- /zou/app/models/budget_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/budget_entry.py -------------------------------------------------------------------------------- /zou/app/models/build_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/build_job.py -------------------------------------------------------------------------------- /zou/app/models/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/chat.py -------------------------------------------------------------------------------- /zou/app/models/chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/chat_message.py -------------------------------------------------------------------------------- /zou/app/models/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/comment.py -------------------------------------------------------------------------------- /zou/app/models/custom_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/custom_action.py -------------------------------------------------------------------------------- /zou/app/models/data_import_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/data_import_error.py -------------------------------------------------------------------------------- /zou/app/models/day_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/day_off.py -------------------------------------------------------------------------------- /zou/app/models/department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/department.py -------------------------------------------------------------------------------- /zou/app/models/desktop_login_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/desktop_login_log.py -------------------------------------------------------------------------------- /zou/app/models/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/entity.py -------------------------------------------------------------------------------- /zou/app/models/entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/entity_type.py -------------------------------------------------------------------------------- /zou/app/models/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/event.py -------------------------------------------------------------------------------- /zou/app/models/file_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/file_status.py -------------------------------------------------------------------------------- /zou/app/models/hardware_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/hardware_item.py -------------------------------------------------------------------------------- /zou/app/models/login_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/login_log.py -------------------------------------------------------------------------------- /zou/app/models/metadata_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/metadata_descriptor.py -------------------------------------------------------------------------------- /zou/app/models/milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/milestone.py -------------------------------------------------------------------------------- /zou/app/models/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/news.py -------------------------------------------------------------------------------- /zou/app/models/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/notification.py -------------------------------------------------------------------------------- /zou/app/models/organisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/organisation.py -------------------------------------------------------------------------------- /zou/app/models/output_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/output_file.py -------------------------------------------------------------------------------- /zou/app/models/output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/output_type.py -------------------------------------------------------------------------------- /zou/app/models/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/person.py -------------------------------------------------------------------------------- /zou/app/models/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/playlist.py -------------------------------------------------------------------------------- /zou/app/models/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/plugin.py -------------------------------------------------------------------------------- /zou/app/models/preview_background_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/preview_background_file.py -------------------------------------------------------------------------------- /zou/app/models/preview_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/preview_file.py -------------------------------------------------------------------------------- /zou/app/models/production_schedule_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/production_schedule_version.py -------------------------------------------------------------------------------- /zou/app/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/project.py -------------------------------------------------------------------------------- /zou/app/models/project_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/project_status.py -------------------------------------------------------------------------------- /zou/app/models/salary_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/salary_scale.py -------------------------------------------------------------------------------- /zou/app/models/schedule_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/schedule_item.py -------------------------------------------------------------------------------- /zou/app/models/search_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/search_filter.py -------------------------------------------------------------------------------- /zou/app/models/search_filter_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/search_filter_group.py -------------------------------------------------------------------------------- /zou/app/models/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/serializer.py -------------------------------------------------------------------------------- /zou/app/models/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/software.py -------------------------------------------------------------------------------- /zou/app/models/status_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/status_automation.py -------------------------------------------------------------------------------- /zou/app/models/studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/studio.py -------------------------------------------------------------------------------- /zou/app/models/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/subscription.py -------------------------------------------------------------------------------- /zou/app/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/task.py -------------------------------------------------------------------------------- /zou/app/models/task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/task_status.py -------------------------------------------------------------------------------- /zou/app/models/task_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/task_type.py -------------------------------------------------------------------------------- /zou/app/models/time_spent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/time_spent.py -------------------------------------------------------------------------------- /zou/app/models/working_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/models/working_file.py -------------------------------------------------------------------------------- /zou/app/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/services/assets_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/assets_service.py -------------------------------------------------------------------------------- /zou/app/services/auth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/auth_service.py -------------------------------------------------------------------------------- /zou/app/services/backup_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/backup_service.py -------------------------------------------------------------------------------- /zou/app/services/base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/base_service.py -------------------------------------------------------------------------------- /zou/app/services/breakdown_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/breakdown_service.py -------------------------------------------------------------------------------- /zou/app/services/budget_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/budget_service.py -------------------------------------------------------------------------------- /zou/app/services/chats_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/chats_service.py -------------------------------------------------------------------------------- /zou/app/services/comments_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/comments_service.py -------------------------------------------------------------------------------- /zou/app/services/concepts_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/concepts_service.py -------------------------------------------------------------------------------- /zou/app/services/custom_actions_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/custom_actions_service.py -------------------------------------------------------------------------------- /zou/app/services/deletion_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/deletion_service.py -------------------------------------------------------------------------------- /zou/app/services/departments_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/departments_service.py -------------------------------------------------------------------------------- /zou/app/services/edits_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/edits_service.py -------------------------------------------------------------------------------- /zou/app/services/emails_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/emails_service.py -------------------------------------------------------------------------------- /zou/app/services/entities_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/entities_service.py -------------------------------------------------------------------------------- /zou/app/services/events_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/events_service.py -------------------------------------------------------------------------------- /zou/app/services/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/exception.py -------------------------------------------------------------------------------- /zou/app/services/file_tree_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/file_tree_service.py -------------------------------------------------------------------------------- /zou/app/services/files_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/files_service.py -------------------------------------------------------------------------------- /zou/app/services/index_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/index_service.py -------------------------------------------------------------------------------- /zou/app/services/names_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/names_service.py -------------------------------------------------------------------------------- /zou/app/services/news_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/news_service.py -------------------------------------------------------------------------------- /zou/app/services/notifications_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/notifications_service.py -------------------------------------------------------------------------------- /zou/app/services/persons_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/persons_service.py -------------------------------------------------------------------------------- /zou/app/services/playlists_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/playlists_service.py -------------------------------------------------------------------------------- /zou/app/services/plugins_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/plugins_service.py -------------------------------------------------------------------------------- /zou/app/services/preview_files_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/preview_files_service.py -------------------------------------------------------------------------------- /zou/app/services/projects_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/projects_service.py -------------------------------------------------------------------------------- /zou/app/services/scenes_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/scenes_service.py -------------------------------------------------------------------------------- /zou/app/services/schedule_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/schedule_service.py -------------------------------------------------------------------------------- /zou/app/services/shots_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/shots_service.py -------------------------------------------------------------------------------- /zou/app/services/stats_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/stats_service.py -------------------------------------------------------------------------------- /zou/app/services/status_automations_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/status_automations_service.py -------------------------------------------------------------------------------- /zou/app/services/sync_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/sync_service.py -------------------------------------------------------------------------------- /zou/app/services/tasks_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/tasks_service.py -------------------------------------------------------------------------------- /zou/app/services/telemetry_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/telemetry_services.py -------------------------------------------------------------------------------- /zou/app/services/templates_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/templates_service.py -------------------------------------------------------------------------------- /zou/app/services/time_spents_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/time_spents_service.py -------------------------------------------------------------------------------- /zou/app/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/services/user_service.py -------------------------------------------------------------------------------- /zou/app/stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/stores/auth_tokens_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/stores/auth_tokens_store.py -------------------------------------------------------------------------------- /zou/app/stores/file_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/stores/file_store.py -------------------------------------------------------------------------------- /zou/app/stores/publisher_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/stores/publisher_store.py -------------------------------------------------------------------------------- /zou/app/stores/queue_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/stores/queue_store.py -------------------------------------------------------------------------------- /zou/app/swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/swagger.py -------------------------------------------------------------------------------- /zou/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/app/utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/api.py -------------------------------------------------------------------------------- /zou/app/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/auth.py -------------------------------------------------------------------------------- /zou/app/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/cache.py -------------------------------------------------------------------------------- /zou/app/utils/chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/chats.py -------------------------------------------------------------------------------- /zou/app/utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/colors.py -------------------------------------------------------------------------------- /zou/app/utils/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/commands.py -------------------------------------------------------------------------------- /zou/app/utils/csv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/csv_utils.py -------------------------------------------------------------------------------- /zou/app/utils/date_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/date_helpers.py -------------------------------------------------------------------------------- /zou/app/utils/dbhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/dbhelpers.py -------------------------------------------------------------------------------- /zou/app/utils/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/emails.py -------------------------------------------------------------------------------- /zou/app/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/env.py -------------------------------------------------------------------------------- /zou/app/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/events.py -------------------------------------------------------------------------------- /zou/app/utils/fido.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/fido.py -------------------------------------------------------------------------------- /zou/app/utils/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/fields.py -------------------------------------------------------------------------------- /zou/app/utils/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/flask.py -------------------------------------------------------------------------------- /zou/app/utils/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/fs.py -------------------------------------------------------------------------------- /zou/app/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/git.py -------------------------------------------------------------------------------- /zou/app/utils/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/logs.py -------------------------------------------------------------------------------- /zou/app/utils/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/monitoring.py -------------------------------------------------------------------------------- /zou/app/utils/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/permissions.py -------------------------------------------------------------------------------- /zou/app/utils/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/plugins.py -------------------------------------------------------------------------------- /zou/app/utils/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/query.py -------------------------------------------------------------------------------- /zou/app/utils/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/redis.py -------------------------------------------------------------------------------- /zou/app/utils/remote_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/remote_job.py -------------------------------------------------------------------------------- /zou/app/utils/saml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/saml.py -------------------------------------------------------------------------------- /zou/app/utils/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/shell.py -------------------------------------------------------------------------------- /zou/app/utils/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/string.py -------------------------------------------------------------------------------- /zou/app/utils/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/app/utils/thumbnail.py -------------------------------------------------------------------------------- /zou/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/cli.py -------------------------------------------------------------------------------- /zou/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/debug.py -------------------------------------------------------------------------------- /zou/event_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/event_stream.py -------------------------------------------------------------------------------- /zou/job_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/job_settings.py -------------------------------------------------------------------------------- /zou/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /zou/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/alembic.ini -------------------------------------------------------------------------------- /zou/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/env.py -------------------------------------------------------------------------------- /zou/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/script.py.mako -------------------------------------------------------------------------------- /zou/migrations/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/migrations/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/utils/base.py -------------------------------------------------------------------------------- /zou/migrations/versions/003be8a91001_add_start_and_end_dates_to_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/003be8a91001_add_start_and_end_dates_to_projects.py -------------------------------------------------------------------------------- /zou/migrations/versions/0596674df51d_add_department_mentions_to_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/0596674df51d_add_department_mentions_to_comments.py -------------------------------------------------------------------------------- /zou/migrations/versions/05ac7e8caa21_remove_unique_constraint_for_taskstatus_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/05ac7e8caa21_remove_unique_constraint_for_taskstatus_.py -------------------------------------------------------------------------------- /zou/migrations/versions/05b7dc79a416_add_archived_fields_to_main_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/05b7dc79a416_add_archived_fields_to_main_tables.py -------------------------------------------------------------------------------- /zou/migrations/versions/06552e22f9e7_add_comment_updated_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/06552e22f9e7_add_comment_updated_by.py -------------------------------------------------------------------------------- /zou/migrations/versions/0bd1e89f2a6f_add_productionscheduleversiontasklink_uc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/0bd1e89f2a6f_add_productionscheduleversiontasklink_uc.py -------------------------------------------------------------------------------- /zou/migrations/versions/0c05b22194f3_add_performance_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/0c05b22194f3_add_performance_indexes.py -------------------------------------------------------------------------------- /zou/migrations/versions/0cf5e0e035fa_drop_column_tasktype_for_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/0cf5e0e035fa_drop_column_tasktype_for_shots.py -------------------------------------------------------------------------------- /zou/migrations/versions/0ec3762a745d_add_attachment_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/0ec3762a745d_add_attachment_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/0ef6416a507b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/0ef6416a507b_.py -------------------------------------------------------------------------------- /zou/migrations/versions/10cf267d95c9_fix_schedule_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/10cf267d95c9_fix_schedule_item.py -------------------------------------------------------------------------------- /zou/migrations/versions/16328eae4b5f_add_new_constraint_for_timespent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/16328eae4b5f_add_new_constraint_for_timespent.py -------------------------------------------------------------------------------- /zou/migrations/versions/16df47d76c64_add_some_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/16df47d76c64_add_some_indexes.py -------------------------------------------------------------------------------- /zou/migrations/versions/17ef8f7be758_disallow_null_choicetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/17ef8f7be758_disallow_null_choicetype.py -------------------------------------------------------------------------------- /zou/migrations/versions/1b0ab951adca_add_reply_id_to_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/1b0ab951adca_add_reply_id_to_attachments.py -------------------------------------------------------------------------------- /zou/migrations/versions/1bb55759146f_add_table_studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/1bb55759146f_add_table_studio.py -------------------------------------------------------------------------------- /zou/migrations/versions/1cb44194db49_add_file_size_field_to_preview_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/1cb44194db49_add_file_size_field_to_preview_file.py -------------------------------------------------------------------------------- /zou/migrations/versions/1e150c2cea4d_add_nb_entities_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/1e150c2cea4d_add_nb_entities_out.py -------------------------------------------------------------------------------- /zou/migrations/versions/1e2d77a2f0c4_add_hd_by_default_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/1e2d77a2f0c4_add_hd_by_default_column.py -------------------------------------------------------------------------------- /zou/migrations/versions/1fab8c420678_add_attachments_to_message_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/1fab8c420678_add_attachments_to_message_chats.py -------------------------------------------------------------------------------- /zou/migrations/versions/20a8ad264659_tasktypeassettypelink_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/20a8ad264659_tasktypeassettypelink_.py -------------------------------------------------------------------------------- /zou/migrations/versions/20dfeb36142b_add_projecttaskstatuslink_roles_for_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/20dfeb36142b_add_projecttaskstatuslink_roles_for_.py -------------------------------------------------------------------------------- /zou/migrations/versions/23122f290ca2_add_entity_chat_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/23122f290ca2_add_entity_chat_models.py -------------------------------------------------------------------------------- /zou/migrations/versions/269d41bfb73f_add_entity_entity_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/269d41bfb73f_add_entity_entity_links.py -------------------------------------------------------------------------------- /zou/migrations/versions/26f96f65cfa3_add_productionversionschedule_uc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/26f96f65cfa3_add_productionversionschedule_uc.py -------------------------------------------------------------------------------- /zou/migrations/versions/2762a797f1f9_add_people_salary_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/2762a797f1f9_add_people_salary_information.py -------------------------------------------------------------------------------- /zou/migrations/versions/29df910f04a4_create_unique_constraint_project_id_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/29df910f04a4_create_unique_constraint_project_id_.py -------------------------------------------------------------------------------- /zou/migrations/versions/29fe01a6c9eb_add_status_automation_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/29fe01a6c9eb_add_status_automation_field.py -------------------------------------------------------------------------------- /zou/migrations/versions/2adc020885fa_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/2adc020885fa_.py -------------------------------------------------------------------------------- /zou/migrations/versions/2baede80b111_add_entity_status_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/2baede80b111_add_entity_status_field.py -------------------------------------------------------------------------------- /zou/migrations/versions/306266361f4f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/306266361f4f_.py -------------------------------------------------------------------------------- /zou/migrations/versions/307edd8c639d_change_comment_updated_by_in_comment_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/307edd8c639d_change_comment_updated_by_in_comment_.py -------------------------------------------------------------------------------- /zou/migrations/versions/328fd44c6347_add_entity_created_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/328fd44c6347_add_entity_created_by.py -------------------------------------------------------------------------------- /zou/migrations/versions/32f134ff1201_add_is_shared_flag_to_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/32f134ff1201_add_is_shared_flag_to_filters.py -------------------------------------------------------------------------------- /zou/migrations/versions/346250b5304c_add_position_to_preview_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/346250b5304c_add_position_to_preview_files.py -------------------------------------------------------------------------------- /zou/migrations/versions/3476e147e632_add_acks_to_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/3476e147e632_add_acks_to_comments.py -------------------------------------------------------------------------------- /zou/migrations/versions/389cfb9de776_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/389cfb9de776_.py -------------------------------------------------------------------------------- /zou/migrations/versions/38baa9a23b3d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/38baa9a23b3d_.py -------------------------------------------------------------------------------- /zou/migrations/versions/398150912a3f_validation_status_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/398150912a3f_validation_status_preview.py -------------------------------------------------------------------------------- /zou/migrations/versions/3b0d1321079e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/3b0d1321079e_.py -------------------------------------------------------------------------------- /zou/migrations/versions/3d5c93bafb9d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/3d5c93bafb9d_.py -------------------------------------------------------------------------------- /zou/migrations/versions/3d8e68dffeee_fix_task_person_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/3d8e68dffeee_fix_task_person_link.py -------------------------------------------------------------------------------- /zou/migrations/versions/3e0538ddf80f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/3e0538ddf80f_.py -------------------------------------------------------------------------------- /zou/migrations/versions/3fee3bd10f9d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/3fee3bd10f9d_.py -------------------------------------------------------------------------------- /zou/migrations/versions/4095103c7d01_add_is_clients_isolated_flag_to_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4095103c7d01_add_is_clients_isolated_flag_to_projects.py -------------------------------------------------------------------------------- /zou/migrations/versions/40dea9555940_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/40dea9555940_.py -------------------------------------------------------------------------------- /zou/migrations/versions/42ec83db6a01_change_person_preferred_two_factor_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/42ec83db6a01_change_person_preferred_two_factor_.py -------------------------------------------------------------------------------- /zou/migrations/versions/4368137b44e1_productionscheduleversion_add_on_delete_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4368137b44e1_productionscheduleversion_add_on_delete_.py -------------------------------------------------------------------------------- /zou/migrations/versions/43d0cf0ed5e7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/43d0cf0ed5e7_.py -------------------------------------------------------------------------------- /zou/migrations/versions/443d1e78a932_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/443d1e78a932_.py -------------------------------------------------------------------------------- /zou/migrations/versions/45c2de366e66_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/45c2de366e66_.py -------------------------------------------------------------------------------- /zou/migrations/versions/45dafbb3f4e1_for_person_contract_type_disallow_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/45dafbb3f4e1_for_person_contract_type_disallow_null.py -------------------------------------------------------------------------------- /zou/migrations/versions/45f739ef962a_add_people_salary_scale_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/45f739ef962a_add_people_salary_scale_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/4715c2586036_add_last_preview_file_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4715c2586036_add_last_preview_file_fields.py -------------------------------------------------------------------------------- /zou/migrations/versions/4aab1f84ad72_introduce_plugin_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4aab1f84ad72_introduce_plugin_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/4bd9bfb73f11_add_fields_to_the_software_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4bd9bfb73f11_add_fields_to_the_software_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/4d585b6956f2_add_taskstatus_is_wip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4d585b6956f2_add_taskstatus_is_wip.py -------------------------------------------------------------------------------- /zou/migrations/versions/4e3738cdc34c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4e3738cdc34c_.py -------------------------------------------------------------------------------- /zou/migrations/versions/4f2398ebcd49_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/4f2398ebcd49_.py -------------------------------------------------------------------------------- /zou/migrations/versions/523ee9647bee_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/523ee9647bee_.py -------------------------------------------------------------------------------- /zou/migrations/versions/539a3a00c417_for_departmentlink_index_person_id_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/539a3a00c417_for_departmentlink_index_person_id_.py -------------------------------------------------------------------------------- /zou/migrations/versions/54ee0d1d60ba_add_build_job_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/54ee0d1d60ba_add_build_job_model.py -------------------------------------------------------------------------------- /zou/migrations/versions/556526e47daa_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/556526e47daa_.py -------------------------------------------------------------------------------- /zou/migrations/versions/57222395f2be_add_statusautomation_import_last_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/57222395f2be_add_statusautomation_import_last_revision.py -------------------------------------------------------------------------------- /zou/migrations/versions/5798d2c9020b_change_person_role_to_choicetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5798d2c9020b_change_person_role_to_choicetype.py -------------------------------------------------------------------------------- /zou/migrations/versions/590aa1ffe731_add_notifications_enabled_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/590aa1ffe731_add_notifications_enabled_flag.py -------------------------------------------------------------------------------- /zou/migrations/versions/59a7445a966c_add_entity_is_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/59a7445a966c_add_entity_is_shared.py -------------------------------------------------------------------------------- /zou/migrations/versions/5a291251823c_add_max_retake_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5a291251823c_add_max_retake_parameter.py -------------------------------------------------------------------------------- /zou/migrations/versions/5ab9d7a75887_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5ab9d7a75887_.py -------------------------------------------------------------------------------- /zou/migrations/versions/5b0fcbb94f24_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5b0fcbb94f24_.py -------------------------------------------------------------------------------- /zou/migrations/versions/5b7fa3e51701_add_is_client_allowed_flag_to_task_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5b7fa3e51701_add_is_client_allowed_flag_to_task_.py -------------------------------------------------------------------------------- /zou/migrations/versions/5b980f0dc365_add_comment_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5b980f0dc365_add_comment_links.py -------------------------------------------------------------------------------- /zou/migrations/versions/5b9fd9ddfe43_add_homepage_and_contract_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5b9fd9ddfe43_add_homepage_and_contract_fields.py -------------------------------------------------------------------------------- /zou/migrations/versions/5c0498e264bc_add_slack_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5c0498e264bc_add_slack_fields.py -------------------------------------------------------------------------------- /zou/migrations/versions/5e2ce62632a6_add_workflow_to_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5e2ce62632a6_add_workflow_to_project.py -------------------------------------------------------------------------------- /zou/migrations/versions/5f1620d191af_add_playlist_id_field_to_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5f1620d191af_add_playlist_id_field_to_notification.py -------------------------------------------------------------------------------- /zou/migrations/versions/5f715f2b6348_add_new_table_productionscheduleversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/5f715f2b6348_add_new_table_productionscheduleversion.py -------------------------------------------------------------------------------- /zou/migrations/versions/680c64565f9d_for_searchfiltergroup_is_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/680c64565f9d_for_searchfiltergroup_is_shared.py -------------------------------------------------------------------------------- /zou/migrations/versions/693cc511d28d_add_taskstatus_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/693cc511d28d_add_taskstatus_priority.py -------------------------------------------------------------------------------- /zou/migrations/versions/6aa446ee4072_add_is_for_all_flage_to_playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/6aa446ee4072_add_is_for_all_flage_to_playlists.py -------------------------------------------------------------------------------- /zou/migrations/versions/6bd3b102d61b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/6bd3b102d61b_.py -------------------------------------------------------------------------------- /zou/migrations/versions/6c597e842afa_add_task_type_field_to_playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/6c597e842afa_add_task_type_field_to_playlists.py -------------------------------------------------------------------------------- /zou/migrations/versions/6d1b2c60f58b_add_milestone_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/6d1b2c60f58b_add_milestone_model.py -------------------------------------------------------------------------------- /zou/migrations/versions/6d7fa5a8e9a5_add_timesheets_locked_field_to_org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/6d7fa5a8e9a5_add_timesheets_locked_field_to_org.py -------------------------------------------------------------------------------- /zou/migrations/versions/6eeaff945706_add_data_field_on_entity_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/6eeaff945706_add_data_field_on_entity_links.py -------------------------------------------------------------------------------- /zou/migrations/versions/6f6049877105_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/6f6049877105_.py -------------------------------------------------------------------------------- /zou/migrations/versions/71d546ace0ee_add_performance_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/71d546ace0ee_add_performance_indexes.py -------------------------------------------------------------------------------- /zou/migrations/versions/7417c8eb70d8_add_for_entity_field_to_playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/7417c8eb70d8_add_for_entity_field_to_playlists.py -------------------------------------------------------------------------------- /zou/migrations/versions/772a5e43f05b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/772a5e43f05b_.py -------------------------------------------------------------------------------- /zou/migrations/versions/7748d3d22925_add_columns_to_searchfilter_table_to_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/7748d3d22925_add_columns_to_searchfilter_table_to_.py -------------------------------------------------------------------------------- /zou/migrations/versions/77d6820f494f_add_reply_to_notif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/77d6820f494f_add_reply_to_notif.py -------------------------------------------------------------------------------- /zou/migrations/versions/7a16258f2fab_add_currency_field_to_budgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/7a16258f2fab_add_currency_field_to_budgets.py -------------------------------------------------------------------------------- /zou/migrations/versions/7b1f765677d8_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/7b1f765677d8_.py -------------------------------------------------------------------------------- /zou/migrations/versions/7bc746997e8d_add_slack_token_field_to_organisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/7bc746997e8d_add_slack_token_field_to_organisation.py -------------------------------------------------------------------------------- /zou/migrations/versions/7dc79d4ed7cd_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/7dc79d4ed7cd_.py -------------------------------------------------------------------------------- /zou/migrations/versions/818f7bda2528_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/818f7bda2528_.py -------------------------------------------------------------------------------- /zou/migrations/versions/82e7f7a95e84_add_project_id_to_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/82e7f7a95e84_add_project_id_to_events.py -------------------------------------------------------------------------------- /zou/migrations/versions/82ee682204ab_add_is_generated_from_ldap_column_to_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/82ee682204ab_add_is_generated_from_ldap_column_to_.py -------------------------------------------------------------------------------- /zou/migrations/versions/83e2f33a9b14_add_project_bugdet_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/83e2f33a9b14_add_project_bugdet_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/8588f254d6b8_add_archived_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/8588f254d6b8_add_archived_fields.py -------------------------------------------------------------------------------- /zou/migrations/versions/8739ae9fa28b_add_for_client_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/8739ae9fa28b_add_for_client_field.py -------------------------------------------------------------------------------- /zou/migrations/versions/87efceb6745b_add_ready_for_to_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/87efceb6745b_add_ready_for_to_entity.py -------------------------------------------------------------------------------- /zou/migrations/versions/892b264937ec_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/892b264937ec_.py -------------------------------------------------------------------------------- /zou/migrations/versions/8a1b4a1b7f4a_add_totp_columns_for_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/8a1b4a1b7f4a_add_totp_columns_for_person.py -------------------------------------------------------------------------------- /zou/migrations/versions/8ab98c178903_add_budget_entry_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/8ab98c178903_add_budget_entry_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/8e4f39e321f4_add_day_off_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/8e4f39e321f4_add_day_off_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/8e67c183bed7_add_preference_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/8e67c183bed7_add_preference_fields.py -------------------------------------------------------------------------------- /zou/migrations/versions/8fbd40afbe5f_allow_to_set_float_values_for_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/8fbd40afbe5f_allow_to_set_float_values_for_.py -------------------------------------------------------------------------------- /zou/migrations/versions/9010a64e5a2d_add_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9010a64e5a2d_add_indices.py -------------------------------------------------------------------------------- /zou/migrations/versions/9060dd4f6116_notification_uc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9060dd4f6116_notification_uc.py -------------------------------------------------------------------------------- /zou/migrations/versions/925771029620_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/925771029620_.py -------------------------------------------------------------------------------- /zou/migrations/versions/92b40d79ad3f_allow_message_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/92b40d79ad3f_allow_message_attachments.py -------------------------------------------------------------------------------- /zou/migrations/versions/92bdfe07e5f5_discord_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/92bdfe07e5f5_discord_integration.py -------------------------------------------------------------------------------- /zou/migrations/versions/956659992419_add_columns_for_person_to_store_fido_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/956659992419_add_columns_for_person_to_store_fido_.py -------------------------------------------------------------------------------- /zou/migrations/versions/9683bd840dee_add_archived_field_to_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9683bd840dee_add_archived_field_to_software.py -------------------------------------------------------------------------------- /zou/migrations/versions/96c79d31e648_add_mail_otp_columns_for_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/96c79d31e648_add_mail_otp_columns_for_person.py -------------------------------------------------------------------------------- /zou/migrations/versions/96f58a4a2a58_person_partial_index_for_email_only_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/96f58a4a2a58_person_partial_index_for_email_only_.py -------------------------------------------------------------------------------- /zou/migrations/versions/971dbf5a0faf_add_short_name_for_asset_type_entity_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/971dbf5a0faf_add_short_name_for_asset_type_entity_.py -------------------------------------------------------------------------------- /zou/migrations/versions/98c90621cf58_add_for_client_flag_to_playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/98c90621cf58_add_for_client_flag_to_playlist.py -------------------------------------------------------------------------------- /zou/migrations/versions/99825b9cc778_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/99825b9cc778_.py -------------------------------------------------------------------------------- /zou/migrations/versions/9a09467f9b2c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9a09467f9b2c_.py -------------------------------------------------------------------------------- /zou/migrations/versions/9af2df17a9d5_add_hardware_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9af2df17a9d5_add_hardware_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/9b85c14fa8a7_add_day_off_new_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9b85c14fa8a7_add_day_off_new_columns.py -------------------------------------------------------------------------------- /zou/migrations/versions/9bd17364fc18_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9bd17364fc18_.py -------------------------------------------------------------------------------- /zou/migrations/versions/9d3bb33c6fc6_add_department_keys_to_filter_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9d3bb33c6fc6_add_department_keys_to_filter_models.py -------------------------------------------------------------------------------- /zou/migrations/versions/9e5b3a9b0cee_add_new_column_metadatadescriptor_data_type_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9e5b3a9b0cee_add_new_column_metadatadescriptor_data_type_.py -------------------------------------------------------------------------------- /zou/migrations/versions/9f8445f9b42c_add_man_days_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/9f8445f9b42c_add_man_days_fields.py -------------------------------------------------------------------------------- /zou/migrations/versions/a0f668430352_add_created_by_field_to_playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a0f668430352_add_created_by_field_to_playlists.py -------------------------------------------------------------------------------- /zou/migrations/versions/a1b2c3d4e5f6_add_position_to_metadata_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a1b2c3d4e5f6_add_position_to_metadata_descriptor.py -------------------------------------------------------------------------------- /zou/migrations/versions/a23682ccc1f1_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a23682ccc1f1_.py -------------------------------------------------------------------------------- /zou/migrations/versions/a252a094e977_add_descriptions_for_entities_tasks_and_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a252a094e977_add_descriptions_for_entities_tasks_and_.py -------------------------------------------------------------------------------- /zou/migrations/versions/a519c710877c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a519c710877c_.py -------------------------------------------------------------------------------- /zou/migrations/versions/a65bdadbae2f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a65bdadbae2f_.py -------------------------------------------------------------------------------- /zou/migrations/versions/a66508788c53_add_nb_assets_ready.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a66508788c53_add_nb_assets_ready.py -------------------------------------------------------------------------------- /zou/migrations/versions/a6c25eed3ea1_add_login_failed_attemps_and_last_login_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a6c25eed3ea1_add_login_failed_attemps_and_last_login_.py -------------------------------------------------------------------------------- /zou/migrations/versions/a7c43f3fbc76_add_duration_column_to_the_preview_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/a7c43f3fbc76_add_duration_column_to_the_preview_file.py -------------------------------------------------------------------------------- /zou/migrations/versions/aa0a60033106_feedback_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/aa0a60033106_feedback_request.py -------------------------------------------------------------------------------- /zou/migrations/versions/addbad59c706_allow_to_manage_drawings_instead_of_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/addbad59c706_allow_to_manage_drawings_instead_of_.py -------------------------------------------------------------------------------- /zou/migrations/versions/addbbefa7028_add_departments_link_to_metadata_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/addbbefa7028_add_departments_link_to_metadata_.py -------------------------------------------------------------------------------- /zou/migrations/versions/ae0127f2fc56_add_previewfile_width_and_previewfile_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/ae0127f2fc56_add_previewfile_width_and_previewfile_.py -------------------------------------------------------------------------------- /zou/migrations/versions/af1790868e2c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/af1790868e2c_.py -------------------------------------------------------------------------------- /zou/migrations/versions/b45cb782bb9c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/b45cb782bb9c_.py -------------------------------------------------------------------------------- /zou/migrations/versions/b4dd0add5f79_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/b4dd0add5f79_.py -------------------------------------------------------------------------------- /zou/migrations/versions/b8c0a0f9d054_drop_task_status_is_reviewable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/b8c0a0f9d054_drop_task_status_is_reviewable.py -------------------------------------------------------------------------------- /zou/migrations/versions/b8ed0fb263f8_add_person_jti_and_jti_expiration_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/b8ed0fb263f8_add_person_jti_and_jti_expiration_date.py -------------------------------------------------------------------------------- /zou/migrations/versions/b97a71306fc8_add_is_casting_standby_column_to_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/b97a71306fc8_add_is_casting_standby_column_to_entity.py -------------------------------------------------------------------------------- /zou/migrations/versions/be56dc0fb760_for_is_shared_disallow_nullable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/be56dc0fb760_for_is_shared_disallow_nullable.py -------------------------------------------------------------------------------- /zou/migrations/versions/bf1347acdee2_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/bf1347acdee2_.py -------------------------------------------------------------------------------- /zou/migrations/versions/c49e41f1298b_add_previewbackground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/c49e41f1298b_add_previewbackground.py -------------------------------------------------------------------------------- /zou/migrations/versions/c68c2a62cfac_add_mimetype_column_to_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/c68c2a62cfac_add_mimetype_column_to_attachment.py -------------------------------------------------------------------------------- /zou/migrations/versions/c726b98be194_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/c726b98be194_.py -------------------------------------------------------------------------------- /zou/migrations/versions/c81f3e83bdb5_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/c81f3e83bdb5_.py -------------------------------------------------------------------------------- /zou/migrations/versions/ca28796a2a62_add_is_done_field_to_the_task_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/ca28796a2a62_add_is_done_field_to_the_task_model.py -------------------------------------------------------------------------------- /zou/migrations/versions/ce7f46f445dc_add_column_estimation_for_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/ce7f46f445dc_add_column_estimation_for_.py -------------------------------------------------------------------------------- /zou/migrations/versions/cf3d365de164_add_entity_version_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/cf3d365de164_add_entity_version_model.py -------------------------------------------------------------------------------- /zou/migrations/versions/cf6cec6d6bf5_add_status_field_to_preview_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/cf6cec6d6bf5_add_status_field_to_preview_file.py -------------------------------------------------------------------------------- /zou/migrations/versions/d25118cddcaa_modify_salary_scale_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/d25118cddcaa_modify_salary_scale_model.py -------------------------------------------------------------------------------- /zou/migrations/versions/d5665dca188b_add_version_field_to_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/d5665dca188b_add_version_field_to_software.py -------------------------------------------------------------------------------- /zou/migrations/versions/d80267806131_task_status_new_column_is_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/d80267806131_task_status_new_column_is_default.py -------------------------------------------------------------------------------- /zou/migrations/versions/d80f02824047_add_plugin_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/d80f02824047_add_plugin_revision.py -------------------------------------------------------------------------------- /zou/migrations/versions/d8dcd5196d57_add_casting_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/d8dcd5196d57_add_casting_label.py -------------------------------------------------------------------------------- /zou/migrations/versions/d97f2730bf7b_add_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/d97f2730bf7b_add_.py -------------------------------------------------------------------------------- /zou/migrations/versions/dde6be40f54f_add_departement_links_tables_for_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/dde6be40f54f_add_departement_links_tables_for_.py -------------------------------------------------------------------------------- /zou/migrations/versions/de8a3de227ef_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/de8a3de227ef_.py -------------------------------------------------------------------------------- /zou/migrations/versions/deeacd38d373_for_projecttaskstatuslink_set_default_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/deeacd38d373_for_projecttaskstatuslink_set_default_.py -------------------------------------------------------------------------------- /zou/migrations/versions/df1834485f57_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/df1834485f57_.py -------------------------------------------------------------------------------- /zou/migrations/versions/df9f8a147e80_change_file_size_to_big_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/df9f8a147e80_change_file_size_to_big_integer.py -------------------------------------------------------------------------------- /zou/migrations/versions/e1ef93f40d3d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/e1ef93f40d3d_.py -------------------------------------------------------------------------------- /zou/migrations/versions/e29638428dfd_add_schedule_item_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/e29638428dfd_add_schedule_item_table.py -------------------------------------------------------------------------------- /zou/migrations/versions/e3f6db74cc1e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/e3f6db74cc1e_.py -------------------------------------------------------------------------------- /zou/migrations/versions/e4b48ca33539_add_project_production_schedule_version_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/e4b48ca33539_add_project_production_schedule_version_.py -------------------------------------------------------------------------------- /zou/migrations/versions/e7e633bd6fa2_add_exceptions_to_budget_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/e7e633bd6fa2_add_exceptions_to_budget_entries.py -------------------------------------------------------------------------------- /zou/migrations/versions/e839d6603c09_add_person_id_to_shot_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/e839d6603c09_add_person_id_to_shot_history.py -------------------------------------------------------------------------------- /zou/migrations/versions/e8bc24998b34_remove_on_delete_cascade_for_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/e8bc24998b34_remove_on_delete_cascade_for_.py -------------------------------------------------------------------------------- /zou/migrations/versions/ee2373fbe3a4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/ee2373fbe3a4_.py -------------------------------------------------------------------------------- /zou/migrations/versions/f0567e8d0c62_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f0567e8d0c62_.py -------------------------------------------------------------------------------- /zou/migrations/versions/f0c6cbb61869_add_production_style_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f0c6cbb61869_add_production_style_field.py -------------------------------------------------------------------------------- /zou/migrations/versions/f344b867a911_for_description_of_entity_task_working_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f344b867a911_for_description_of_entity_task_working_.py -------------------------------------------------------------------------------- /zou/migrations/versions/f4ff5a73d283_add_person_ldap_uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f4ff5a73d283_add_person_ldap_uid.py -------------------------------------------------------------------------------- /zou/migrations/versions/f5b113876a49_add_preferred_two_factor_authentication_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f5b113876a49_add_preferred_two_factor_authentication_.py -------------------------------------------------------------------------------- /zou/migrations/versions/f5bdca075cdc_add_preview_download_flag_to_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f5bdca075cdc_add_preview_download_flag_to_projects.py -------------------------------------------------------------------------------- /zou/migrations/versions/f874ad5e898a_add_link_entity_type_task_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f874ad5e898a_add_link_entity_type_task_type.py -------------------------------------------------------------------------------- /zou/migrations/versions/f995b28fb749_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/f995b28fb749_.py -------------------------------------------------------------------------------- /zou/migrations/versions/fb6b6f188497_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/fb6b6f188497_.py -------------------------------------------------------------------------------- /zou/migrations/versions/fb87feaaa094_add_missing_unique_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/fb87feaaa094_add_missing_unique_constraints.py -------------------------------------------------------------------------------- /zou/migrations/versions/fba149993140_add_missing_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/fba149993140_add_missing_index.py -------------------------------------------------------------------------------- /zou/migrations/versions/fc322f908695_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/fc322f908695_.py -------------------------------------------------------------------------------- /zou/migrations/versions/fee7c696166e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/fee7c696166e_.py -------------------------------------------------------------------------------- /zou/migrations/versions/feffd3c5b806_introduce_concepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/feffd3c5b806_introduce_concepts.py -------------------------------------------------------------------------------- /zou/migrations/versions/ffeed4956ab1_add_more_details_to_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/migrations/versions/ffeed4956ab1_add_more_details_to_projects.py -------------------------------------------------------------------------------- /zou/plugin_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/__init__.py -------------------------------------------------------------------------------- /zou/plugin_template/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/logo.png -------------------------------------------------------------------------------- /zou/plugin_template/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/manifest.toml -------------------------------------------------------------------------------- /zou/plugin_template/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/migrations/alembic.ini -------------------------------------------------------------------------------- /zou/plugin_template/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/migrations/env.py -------------------------------------------------------------------------------- /zou/plugin_template/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/migrations/script.py.mako -------------------------------------------------------------------------------- /zou/plugin_template/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/models.py -------------------------------------------------------------------------------- /zou/plugin_template/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/plugin_template/routes.py -------------------------------------------------------------------------------- /zou/remote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/remote/config_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/remote/config_payload.py -------------------------------------------------------------------------------- /zou/remote/normalize_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/remote/normalize_movie.py -------------------------------------------------------------------------------- /zou/remote/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/remote/playlist.py -------------------------------------------------------------------------------- /zou/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zou/utils/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgwire/zou/HEAD/zou/utils/movie.py --------------------------------------------------------------------------------