Background
Currently, many service object variable names use descriptive names like memberAdminService, newsletterService, etc. We should standardize these to use consistent camelCase naming throughout the codebase.
Scope
- Backend services in
/functions/src/
- Frontend services in
/members/src/app/services/
- Update all variable declarations, parameters, and references
Examples
// Current
const memberAdminService = ...
const newsletterService = ...
// After refactor (if needed for consistency)
// Review actual usage and determine best naming convention
Acceptance Criteria
Priority
Low - This is a refactoring task for code consistency, not a functional bug.
Background
Currently, many service object variable names use descriptive names like
memberAdminService,newsletterService, etc. We should standardize these to use consistent camelCase naming throughout the codebase.Scope
/functions/src//members/src/app/services/Examples
Acceptance Criteria
Priority
Low - This is a refactoring task for code consistency, not a functional bug.