* dev: magic link login and email password disable * dev: user account deactivation * dev: change nginx conf routes * feat: changemod space * fix: space app dir fixes * dev: invalidate cache for instances when creating workspace * dev: update email templates for test email * dev: fix build errors * fix: auth fixes and improvement (#4452) * chore: change password api updated and missing password error code added * chore: auth helper updated * chore: disable send code input suggestion * chore: change password function updated * fix: application error on sign in page * chore: change password validation added and enhancement * dev: space base path in web * dev: admin user deactivated * dev: user and instance admin session endpoint * fix: last_workspace_id endpoint updated * fix: magic sign in and email password check added --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
225 lines
4.7 KiB
Python
225 lines
4.7 KiB
Python
from .project.base import (
|
|
ProjectViewSet,
|
|
ProjectIdentifierEndpoint,
|
|
ProjectUserViewsEndpoint,
|
|
ProjectFavoritesViewSet,
|
|
ProjectPublicCoverImagesEndpoint,
|
|
ProjectDeployBoardViewSet,
|
|
ProjectArchiveUnarchiveEndpoint,
|
|
)
|
|
|
|
from .project.invite import (
|
|
UserProjectInvitationsViewset,
|
|
ProjectInvitationsViewset,
|
|
ProjectJoinEndpoint,
|
|
)
|
|
|
|
from .project.member import (
|
|
ProjectMemberViewSet,
|
|
AddTeamToProjectEndpoint,
|
|
ProjectMemberUserEndpoint,
|
|
UserProjectRolesEndpoint,
|
|
)
|
|
|
|
from .user.base import (
|
|
UserEndpoint,
|
|
UpdateUserOnBoardedEndpoint,
|
|
UpdateUserTourCompletedEndpoint,
|
|
UserActivityEndpoint,
|
|
)
|
|
|
|
|
|
from .base import BaseAPIView, BaseViewSet
|
|
|
|
from .workspace.base import (
|
|
WorkSpaceViewSet,
|
|
UserWorkSpacesEndpoint,
|
|
WorkSpaceAvailabilityCheckEndpoint,
|
|
UserWorkspaceDashboardEndpoint,
|
|
WorkspaceThemeViewSet,
|
|
ExportWorkspaceUserActivityEndpoint,
|
|
)
|
|
|
|
from .workspace.member import (
|
|
WorkSpaceMemberViewSet,
|
|
TeamMemberViewSet,
|
|
WorkspaceMemberUserEndpoint,
|
|
WorkspaceProjectMemberEndpoint,
|
|
WorkspaceMemberUserViewsEndpoint,
|
|
)
|
|
from .workspace.invite import (
|
|
WorkspaceInvitationsViewset,
|
|
WorkspaceJoinEndpoint,
|
|
UserWorkspaceInvitationsViewSet,
|
|
)
|
|
from .workspace.label import (
|
|
WorkspaceLabelsEndpoint,
|
|
)
|
|
from .workspace.state import (
|
|
WorkspaceStatesEndpoint,
|
|
)
|
|
from .workspace.user import (
|
|
UserLastProjectWithWorkspaceEndpoint,
|
|
WorkspaceUserProfileIssuesEndpoint,
|
|
WorkspaceUserPropertiesEndpoint,
|
|
WorkspaceUserProfileEndpoint,
|
|
WorkspaceUserActivityEndpoint,
|
|
WorkspaceUserProfileStatsEndpoint,
|
|
UserActivityGraphEndpoint,
|
|
UserIssueCompletedGraphEndpoint,
|
|
)
|
|
from .workspace.estimate import (
|
|
WorkspaceEstimatesEndpoint,
|
|
)
|
|
from .workspace.module import (
|
|
WorkspaceModulesEndpoint,
|
|
)
|
|
from .workspace.cycle import (
|
|
WorkspaceCyclesEndpoint,
|
|
)
|
|
|
|
from .state.base import StateViewSet
|
|
from .view.base import (
|
|
GlobalViewViewSet,
|
|
GlobalViewIssuesViewSet,
|
|
IssueViewViewSet,
|
|
IssueViewFavoriteViewSet,
|
|
)
|
|
from .cycle.base import (
|
|
CycleViewSet,
|
|
CycleDateCheckEndpoint,
|
|
CycleFavoriteViewSet,
|
|
TransferCycleIssueEndpoint,
|
|
CycleUserPropertiesEndpoint,
|
|
CycleViewSet,
|
|
TransferCycleIssueEndpoint,
|
|
)
|
|
from .cycle.issue import (
|
|
CycleIssueViewSet,
|
|
)
|
|
from .cycle.archive import (
|
|
CycleArchiveUnarchiveEndpoint,
|
|
)
|
|
|
|
from .asset.base import FileAssetEndpoint, UserAssetsEndpoint, FileAssetViewSet
|
|
from .issue.base import (
|
|
IssueListEndpoint,
|
|
IssueViewSet,
|
|
IssueUserDisplayPropertyEndpoint,
|
|
BulkDeleteIssuesEndpoint,
|
|
)
|
|
|
|
from .issue.activity import (
|
|
IssueActivityEndpoint,
|
|
)
|
|
|
|
from .issue.archive import (
|
|
IssueArchiveViewSet,
|
|
)
|
|
|
|
from .issue.attachment import (
|
|
IssueAttachmentEndpoint,
|
|
)
|
|
|
|
from .issue.comment import (
|
|
IssueCommentViewSet,
|
|
CommentReactionViewSet,
|
|
)
|
|
|
|
from .issue.draft import IssueDraftViewSet
|
|
|
|
from .issue.label import (
|
|
LabelViewSet,
|
|
BulkCreateIssueLabelsEndpoint,
|
|
)
|
|
|
|
from .issue.link import (
|
|
IssueLinkViewSet,
|
|
)
|
|
|
|
from .issue.relation import (
|
|
IssueRelationViewSet,
|
|
)
|
|
|
|
from .issue.reaction import (
|
|
IssueReactionViewSet,
|
|
)
|
|
|
|
from .issue.sub_issue import (
|
|
SubIssuesEndpoint,
|
|
)
|
|
|
|
from .issue.subscriber import (
|
|
IssueSubscriberViewSet,
|
|
)
|
|
|
|
|
|
from .module.base import (
|
|
ModuleViewSet,
|
|
ModuleLinkViewSet,
|
|
ModuleFavoriteViewSet,
|
|
ModuleUserPropertiesEndpoint,
|
|
)
|
|
|
|
from .module.issue import (
|
|
ModuleIssueViewSet,
|
|
)
|
|
|
|
from .module.archive import (
|
|
ModuleArchiveUnarchiveEndpoint,
|
|
)
|
|
|
|
from .api import ApiTokenEndpoint
|
|
|
|
|
|
from .page.base import (
|
|
PageViewSet,
|
|
PageFavoriteViewSet,
|
|
PageLogEndpoint,
|
|
SubPagesEndpoint,
|
|
)
|
|
|
|
from .search import GlobalSearchEndpoint, IssueSearchEndpoint
|
|
|
|
|
|
from .external.base import (
|
|
GPTIntegrationEndpoint,
|
|
UnsplashEndpoint,
|
|
)
|
|
from .estimate.base import (
|
|
ProjectEstimatePointEndpoint,
|
|
BulkEstimatePointEndpoint,
|
|
)
|
|
|
|
from .inbox.base import InboxViewSet, InboxIssueViewSet
|
|
|
|
from .analytic.base import (
|
|
AnalyticsEndpoint,
|
|
AnalyticViewViewset,
|
|
SavedAnalyticEndpoint,
|
|
ExportAnalyticsEndpoint,
|
|
DefaultAnalyticsEndpoint,
|
|
)
|
|
|
|
from .notification.base import (
|
|
NotificationViewSet,
|
|
UnreadNotificationEndpoint,
|
|
UserNotificationPreferenceEndpoint,
|
|
)
|
|
|
|
from .exporter.base import ExportIssuesEndpoint
|
|
|
|
|
|
from .webhook.base import (
|
|
WebhookEndpoint,
|
|
WebhookLogsEndpoint,
|
|
WebhookSecretRegenerateEndpoint,
|
|
)
|
|
|
|
from .dashboard.base import DashboardEndpoint, WidgetsEndpoint
|
|
|
|
from .error_404 import custom_404_view
|
|
|
|
from .exporter.base import ExportIssuesEndpoint
|
|
from .notification.base import MarkAllReadNotificationViewSet
|
|
from .user.base import AccountEndpoint, ProfileEndpoint, UserSessionEndpoint
|