4 Commits 6224bbd3f9 ... 6ea66b76e2

Tác giả SHA1 Thông báo Ngày
  wilitp 6ea66b76e2 Mostrar due_date en api 3 năm trước cách đây
  wilitp 5d1b7d63cf Cambiar valores de frecuencias calendario a inglés 3 năm trước cách đây
  wilitp 6224bbd3f9 Mostrar due_date en api 3 năm trước cách đây
  wilitp 6019bfaeef Cambiar valores de frecuencias calendario a inglés 3 năm trước cách đây
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      app/api/config.py

+ 2 - 1
app/api/config.py

@@ -3,7 +3,8 @@ from django.utils.timezone import timedelta as delta
 
 CALENDAR_FREQUENCIES = {
     "daily": delta(days=1),
-    "biweekly": reldelta(days=15),
+    "weekly": reldelta(weeks=1),
+    "biweekly": reldelta(weeks=2),
     "monthly": reldelta(months=1),
     "yearly": reldelta(years=1)
 }