Skip to content

Commit

Permalink
Merge branch 'hg/SDESK-7441-base-async-services-resources' into SDESK…
Browse files Browse the repository at this point in the history
…-7443
  • Loading branch information
BrianMwangi21 committed Dec 2, 2024
2 parents 36bd997 + 0f26b18 commit 9102f9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions server/planning/assignments/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
)

from planning.types import AssignmentResourceModel
from .service import AssingmentsAsyncService
from .service import AssignmentsAsyncService

assignments_resource_config = ResourceConfig(
name="assignments",
data_class=AssignmentResourceModel,
service=AssingmentsAsyncService,
service=AssignmentsAsyncService,
etag_ignore_fields=["planning", "published_state", "published_at"],
mongo=MongoResourceConfig(
indexes=[
Expand Down
2 changes: 1 addition & 1 deletion server/planning/assignments/service.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from planning.core.service import BasePlanningAsyncService


class AssingmentsAsyncService(BasePlanningAsyncService):
class AssignmentsAsyncService(BasePlanningAsyncService):
pass

0 comments on commit 9102f9c

Please sign in to comment.