Content-Length: 279279 | pFad | http://github.com/coder/coder/commit/bf59c7ca0f832252c2842064c06a7c8fc38f5427
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4960a1e commit bf59c7cCopy full SHA for bf59c7c
site/src/modules/dashboard/Navbar/NavbarView.tsx
@@ -67,6 +67,18 @@ export const NavbarView: FC<NavbarViewProps> = ({
67
canViewHealth={canViewHealth}
68
/>
69
70
+ <NotificationsInbox
71
+ fetchNotifications={API.getInboxNotifications}
72
+ markAllAsRead={() => {
73
+ throw new Error("Function not implemented.");
74
+ }}
75
+ markNotificationAsRead={(notificationId) =>
76
+ API.updateInboxNotificationReadStatus(notificationId, {
77
+ is_read: true,
78
+ })
79
+ }
80
+ />
81
+
82
{user && (
83
<UserDropdown
84
user={user}
Fetched URL: http://github.com/coder/coder/commit/bf59c7ca0f832252c2842064c06a7c8fc38f5427
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
0 commit comments