mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
Changed: StorageResultType to error result code
This commit is contained in:
parent
be3ef15f8e
commit
4a8d516123
33 changed files with 257 additions and 302 deletions
8
dev/bootstrap.js
vendored
8
dev/bootstrap.js
vendored
|
|
@ -1,5 +1,4 @@
|
|||
import { doc, elementById, dropdownVisibility, Settings } from 'Common/Globals';
|
||||
import { StorageResultType } from 'Common/Enums';
|
||||
import { i18n } from 'Common/Translator';
|
||||
|
||||
import { root } from 'Common/Links';
|
||||
|
|
@ -35,7 +34,12 @@ export default (App) => {
|
|||
rl.i18n = i18n;
|
||||
|
||||
rl.Enums = {
|
||||
StorageResultType: StorageResultType
|
||||
StorageResultType: {
|
||||
Success: 0,
|
||||
Error: 1,
|
||||
Abort: 2,
|
||||
Unload: 3
|
||||
}
|
||||
};
|
||||
|
||||
rl.Dropdowns = [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue