You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(api): remove obsolete validation call in PUT handler
The PUT handler in routes/api/v1/data/[id]/index.dart contained a manual check for user_content_preferences that called the old checkUpdatePreferences method, which has been removed. This caused a compile-time error.
This change removes the obsolete if block. The validation logic is now correctly and exclusively handled by the custom updater for user_content_preferences within the DataOperationRegistry, which was implemented in a previous step. This resolves the error and ensures the correct validation path is used.
0 commit comments