mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
01e3fd5fcd
Allows errors to be queued for showing to the user, such as in the uploader’s error states.
14 lines
225 B
JavaScript
14 lines
225 B
JavaScript
'use strict';
|
|
|
|
import { alt } from '../alt';
|
|
|
|
class ErrorQueueActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'shiftErrorQueue'
|
|
);
|
|
}
|
|
}
|
|
|
|
export default alt.createActions(ErrorQueueActions);
|