feat: user profile/settings pages (#958)
This commit is contained in:
6
server/interfaces/api/userInterfaces.ts
Normal file
6
server/interfaces/api/userInterfaces.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { MediaRequest } from '../../entity/MediaRequest';
|
||||
import { PaginatedResponse } from './common';
|
||||
|
||||
export interface UserRequestsResponse extends PaginatedResponse {
|
||||
results: MediaRequest[];
|
||||
}
|
||||
4
server/interfaces/api/userSettingsInterfaces.ts
Normal file
4
server/interfaces/api/userSettingsInterfaces.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface UserSettingsNotificationsResponse {
|
||||
enableNotifications: boolean;
|
||||
discordId?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user