소스 검색

optout user that doesn't want automatic SMS

tripeur 2 년 전
부모
커밋
9c57de7392
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      app/api/endpoints/project.py

+ 2 - 0
app/api/endpoints/project.py

@@ -148,6 +148,8 @@ async def create_sms_batch(
         )
         sending_time = slot.starting_time - timedelta(minutes=sms_batch.delta_t)
         for volunteer in slot.volunteers:
+            if not volunteer.automatic_sms:
+                continue
             # Create a new SMS customized for each user attache to the slot
             personalized_content = slot_content.replace(
                 "{prenom}", volunteer.name