Yoshie Muranaka | 9e36f52 | 2020-02-05 07:42:34 -0800 | [diff] [blame] | 1 | import store from '@/store'; |
Derick Montague | 828dda9 | 2021-06-28 15:52:22 -0500 | [diff] [blame] | 2 | import DumpsStore from '@/store/modules/Logs/DumpsStore'; |
Sandeepa Singh | 05887b5 | 2022-01-10 19:19:36 +0530 | [diff] [blame] | 3 | import KeyClearStore from '@/store/modules/Operations/KeyClearStore'; |
Yoshie Muranaka | 9e36f52 | 2020-02-05 07:42:34 -0800 | [diff] [blame] | 4 | |
Yoshie Muranaka | 82a346b | 2020-10-26 10:57:53 -0700 | [diff] [blame] | 5 | store.unregisterModule('virtualMedia'); |
| 6 | |
Yoshie Muranaka | 22d4d52 | 2020-12-03 10:58:35 -0800 | [diff] [blame] | 7 | store.registerModule('dumps', DumpsStore); |
Yoshie Muranaka | 9e36f52 | 2020-02-05 07:42:34 -0800 | [diff] [blame] | 8 | |
Sandeepa Singh | 05887b5 | 2022-01-10 19:19:36 +0530 | [diff] [blame] | 9 | store.registerModule('key-clear', KeyClearStore); |
| 10 | |
Yoshie Muranaka | 9e36f52 | 2020-02-05 07:42:34 -0800 | [diff] [blame] | 11 | export default store; |