Fix notifications in UI, added new API for fetching account relationships
This commit is contained in:
parent
4bec613897
commit
e46abc71ca
11 changed files with 91 additions and 17 deletions
|
@ -1,4 +1,5 @@
|
|||
export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
|
||||
export const NOTIFICATION_CLEAR = 'NOTIFICATION_CLEAR';
|
||||
|
||||
export function dismissNotification(notification) {
|
||||
return {
|
||||
|
@ -6,3 +7,9 @@ export function dismissNotification(notification) {
|
|||
notification: notification
|
||||
};
|
||||
};
|
||||
|
||||
export function clearNotifications() {
|
||||
return {
|
||||
type: NOTIFICATION_CLEAR
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue