* dev: init github importer * dev: add endpoint for creating import * dev: create endpoint to bulk create issues * dev: bulk issue importer * dev: bulk create endpoints for labels and updates in issue bulk create endpoint to create labels and links * dev: add comments in bluk create * dev: status import endpoint and user invitaion workflow * dev: initiate github repo sync * dev: bulk issue sync endpoint and fix key issue in bg task * dev: update endpoints for service imports * dev: update labels logic * dev: update importer task * dev: bulk issue activities * dev: update importer task for mapped users * dev: update importer endpoint to send github token * dev: update bulk import endpoint * fix: workspace get query * dev: update bulk import endpoints
62 lines
1.1 KiB
Python
62 lines
1.1 KiB
Python
from .base import BaseModel
|
|
|
|
from .user import User
|
|
|
|
from .workspace import (
|
|
Workspace,
|
|
WorkspaceMember,
|
|
Team,
|
|
WorkspaceMemberInvite,
|
|
TeamMember,
|
|
)
|
|
|
|
from .project import (
|
|
Project,
|
|
ProjectMember,
|
|
ProjectBaseModel,
|
|
ProjectMemberInvite,
|
|
ProjectIdentifier,
|
|
ProjectFavorite,
|
|
)
|
|
|
|
from .issue import (
|
|
Issue,
|
|
IssueActivity,
|
|
TimelineIssue,
|
|
IssueProperty,
|
|
IssueComment,
|
|
IssueBlocker,
|
|
IssueLabel,
|
|
IssueAssignee,
|
|
Label,
|
|
IssueBlocker,
|
|
IssueLink,
|
|
IssueSequence,
|
|
)
|
|
|
|
from .asset import FileAsset
|
|
|
|
from .social_connection import SocialLoginConnection
|
|
|
|
from .state import State
|
|
|
|
from .cycle import Cycle, CycleIssue, CycleFavorite
|
|
|
|
from .shortcut import Shortcut
|
|
|
|
from .view import View
|
|
|
|
from .module import Module, ModuleMember, ModuleIssue, ModuleLink, ModuleFavorite
|
|
|
|
from .api_token import APIToken
|
|
|
|
from .integration import (
|
|
WorkspaceIntegration,
|
|
Integration,
|
|
GithubRepository,
|
|
GithubRepositorySync,
|
|
GithubIssueSync,
|
|
GithubCommentSync,
|
|
)
|
|
|
|
from .importer import Importer
|