diff options
author | Joey Hess <joey@kitenet.net> | 2012-11-13 17:50:54 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-11-13 17:50:54 -0400 |
commit | 66cfb61912d2f7fc04b9716b82aad9b02096a6ad (patch) | |
tree | b901cadef39781a9f0e87caa6a80d7bdcc293a40 /Assistant/Types | |
parent | b48755af70f229dce53138100105f352c8f6580c (diff) |
automatic repolist updating
Diffstat (limited to 'Assistant/Types')
-rw-r--r-- | Assistant/Types/DaemonStatus.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Assistant/Types/DaemonStatus.hs b/Assistant/Types/DaemonStatus.hs index df0928d6e..7f868d957 100644 --- a/Assistant/Types/DaemonStatus.hs +++ b/Assistant/Types/DaemonStatus.hs @@ -47,6 +47,8 @@ data DaemonStatus = DaemonStatus , transferNotifier :: NotificationBroadcaster -- Broadcasts notifications when there's a change to the alerts , alertNotifier :: NotificationBroadcaster + -- Broadcasts notifications when the syncRemotes change + , syncRemotesNotifier :: NotificationBroadcaster } type TransferMap = M.Map Transfer TransferInfo @@ -70,3 +72,4 @@ newDaemonStatus = DaemonStatus <*> newNotificationBroadcaster <*> newNotificationBroadcaster <*> newNotificationBroadcaster + <*> newNotificationBroadcaster |