mirror of
https://github.com/mt-mods/mail.git
synced 2025-07-04 21:50:28 -04:00
Implement drafts (#31)
* Add drafts * Update translations * Fix luacheck * Fix luacheck (2)
This commit is contained in:
parent
eae547b2f7
commit
0ea3777b51
12 changed files with 230 additions and 107 deletions
2
init.lua
2
init.lua
|
@ -15,6 +15,7 @@ mail = {
|
|||
selected_idxs = {
|
||||
inbox = {},
|
||||
sent = {},
|
||||
drafts = {},
|
||||
contacts = {},
|
||||
maillists = {},
|
||||
to = {},
|
||||
|
@ -47,6 +48,7 @@ dofile(MP .. "/onjoin.lua")
|
|||
dofile(MP .. "/ui/mail.lua")
|
||||
dofile(MP .. "/ui/inbox.lua")
|
||||
dofile(MP .. "/ui/outbox.lua")
|
||||
dofile(MP .. "/ui/drafts.lua")
|
||||
dofile(MP .. "/ui/message.lua")
|
||||
dofile(MP .. "/ui/events.lua")
|
||||
dofile(MP .. "/ui/contacts.lua")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue