Create task task-64

This commit is contained in:
Dylan Knutson
2025-07-08 17:24:42 +00:00
parent b8e0058e98
commit fd930f944a

View File

@@ -0,0 +1,25 @@
---
id: task-64
title: >-
Convert Domain::Fa::PostEnqueuer to Tasks::Fa::PostEnqueuer and inherit from
EnqueueJobBase
status: To Do
assignee: []
created_date: '2025-07-08'
labels: []
dependencies: []
---
## Description
Move Domain::Fa::PostEnqueuer from Domain namespace to Tasks::Fa namespace and change it to inherit from EnqueueJobBase instead of including multiple modules, following the existing pattern of other enqueue task classes in the codebase.
## Acceptance Criteria
- [ ] Class is moved from Domain::Fa::PostEnqueuer to Tasks::Fa::PostEnqueuer
- [ ] Class inherits from EnqueueJobBase
- [ ] Class implements required abstract methods from EnqueueJobBase
- [ ] Class maintains same functionality as before
- [ ] All references updated to use new namespace
- [ ] Tests pass with new implementation
- [ ] Code follows existing patterns for enqueue tasks