mirror of
https://github.com/barkeser2002/offline-db.git
synced 2026-09-25 01:40:07 +03:00
- Added `Badge` and `UserBadge` models in `users` app. - Implemented `check_badges` service to award badges based on activity (Binge Watcher, Supporter, Veteran). - Added `post_save` signal on `WatchLog` to trigger badge checking automatically. - Added data migration to seed initial badges. - Added tests for badge logic. - Current Focus Mode: C (The Architect) Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
9 lines
136 B
Python
9 lines
136 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "users"
|
|
|
|
def ready(self):
|
|
import users.signals
|