mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fb4535b294
* feat: init slack integration * dev: create model and update existing view for slack * dev: update slack sync model and create view to install slack * dev: workspace integration query * dev: update the metadata validation for access_token and team_id and save config to database * dev: update validation for team_id * dev: update validation * dev: update validations * dev: remove bot access token field from sync * dev: handle integrity exception
70 lines
1.2 KiB
Python
70 lines
1.2 KiB
Python
from .base import BaseModel
|
|
|
|
from .user import User
|
|
|
|
from .workspace import (
|
|
Workspace,
|
|
WorkspaceMember,
|
|
Team,
|
|
WorkspaceMemberInvite,
|
|
TeamMember,
|
|
WorkspaceTheme,
|
|
)
|
|
|
|
from .project import (
|
|
Project,
|
|
ProjectMember,
|
|
ProjectBaseModel,
|
|
ProjectMemberInvite,
|
|
ProjectIdentifier,
|
|
ProjectFavorite,
|
|
)
|
|
|
|
from .issue import (
|
|
Issue,
|
|
IssueActivity,
|
|
TimelineIssue,
|
|
IssueProperty,
|
|
IssueComment,
|
|
IssueBlocker,
|
|
IssueLabel,
|
|
IssueAssignee,
|
|
Label,
|
|
IssueBlocker,
|
|
IssueLink,
|
|
IssueSequence,
|
|
IssueAttachment,
|
|
)
|
|
|
|
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 IssueView, IssueViewFavorite
|
|
|
|
from .module import Module, ModuleMember, ModuleIssue, ModuleLink, ModuleFavorite
|
|
|
|
from .api_token import APIToken
|
|
|
|
from .integration import (
|
|
WorkspaceIntegration,
|
|
Integration,
|
|
GithubRepository,
|
|
GithubRepositorySync,
|
|
GithubIssueSync,
|
|
GithubCommentSync,
|
|
SlackProjectSync,
|
|
)
|
|
|
|
from .importer import Importer
|
|
|
|
from .page import Page, PageBlock, PageFavorite, PageLabel
|
|
|
|
from .estimate import Estimate, EstimatePoint
|