fix: rm getServerIdentifier wrapping Notifications id

This commit is contained in:
Pujit Mehrotra
2024-09-27 16:31:21 -04:00
parent b67b0ea633
commit 71ce064008

View File

@@ -27,13 +27,13 @@ export class NotificationsResolver {
})
public async notifications() {
return {
id: getServerIdentifier('notifications'),
id: 'notifications',
};
}
@ResolveField()
public async overview() {
return await this.notificationsService.getOverview();
return this.notificationsService.getOverview();
}
@ResolveField()