Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:makeplane/plane into preview
Browse files Browse the repository at this point in the history
  • Loading branch information
sriramveeraghanta committed Apr 23, 2024
2 parents 098a195 + bf85273 commit 5e53279
Show file tree
Hide file tree
Showing 54 changed files with 1,057 additions and 855 deletions.
1 change: 1 addition & 0 deletions apiserver/plane/app/serializers/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ class Meta:
"backlog_issues",
"created_at",
"updated_at",
"archived_at",
]
read_only_fields = fields

Expand Down
11 changes: 8 additions & 3 deletions apiserver/plane/app/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
WorkSpaceAvailabilityCheckEndpoint,
UserWorkspaceDashboardEndpoint,
WorkspaceThemeViewSet,
ExportWorkspaceUserActivityEndpoint
ExportWorkspaceUserActivityEndpoint,
)

from .workspace.member import (
Expand Down Expand Up @@ -91,12 +91,14 @@
CycleDateCheckEndpoint,
CycleFavoriteViewSet,
TransferCycleIssueEndpoint,
CycleArchiveUnarchiveEndpoint,
CycleUserPropertiesEndpoint,
)
from .cycle.issue import (
CycleIssueViewSet,
)
from .cycle.archive import (
CycleArchiveUnarchiveEndpoint,
)

from .asset.base import FileAssetEndpoint, UserAssetsEndpoint, FileAssetViewSet
from .issue.base import (
Expand Down Expand Up @@ -170,14 +172,17 @@
ModuleViewSet,
ModuleLinkViewSet,
ModuleFavoriteViewSet,
ModuleArchiveUnarchiveEndpoint,
ModuleUserPropertiesEndpoint,
)

from .module.issue import (
ModuleIssueViewSet,
)

from .module.archive import (
ModuleArchiveUnarchiveEndpoint,
)

from .api import ApiTokenEndpoint


Expand Down
Loading

0 comments on commit 5e53279

Please sign in to comment.