diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-03-01 13:02:12 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-06-07 07:32:16 +0200 |
commit | 2d0337332d64065c5bf36dfb775c48976c0f730d (patch) | |
tree | f863ac28782caf124f68baecffef86576570c6f0 /core/src/OCP/index.js | |
parent | 07ffe4a34a9b3e63f33603a2e2bd49ea98293d88 (diff) | |
download | nextcloud-server-2d0337332d64065c5bf36dfb775c48976c0f730d.tar.gz nextcloud-server-2d0337332d64065c5bf36dfb775c48976c0f730d.zip |
Add toastify js as a OC.Notification replacement
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/src/OCP/index.js')
-rw-r--r-- | core/src/OCP/index.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/src/OCP/index.js b/core/src/OCP/index.js index 67945318362..a4d8f46b88d 100644 --- a/core/src/OCP/index.js +++ b/core/src/OCP/index.js @@ -6,14 +6,16 @@ import * as Comments from './comments' import * as InitialState from './initialstate' import Loader from './loader' import Collaboration from './collaboration' +import Toast from './toast' import * as WhatsNew from './whatsnew' /** @namespace OCP */ export default { AppConfig, + Collaboration, Comments, InitialState, Loader, - WhatsNew, - Collaboration + Toast, + WhatsNew }; |