Skip to content

Commit 84396ed

Browse files
committed
user.controller/userPreferences: update request body type to Partial<UserPreferences>
1 parent 0138eb2 commit 84396ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/types/userPreferences.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export type UpdatePreferencesResponseBody = UserPreferences | Error;
3636
* user.controller.updatePreferences
3737
*/
3838
export interface UpdatePreferencesRequestBody {
39-
preferences: UserPreferences;
39+
preferences: Partial<UserPreferences>;
4040
}
4141

4242
/**

0 commit comments

Comments
 (0)