refactor(Core/Motd): Move motd from conf to db (#15111)

This commit is contained in:
Kitzunu
2023-02-20 22:07:26 +01:00
committed by GitHub
parent bd7f139bb8
commit 0c4feb6744
13 changed files with 126 additions and 36 deletions

View File

@@ -0,0 +1,17 @@
### How to upgrade
Motd is removed from config file
Motd is can now be found in auth database table `motd`
`realmid` = Realm ID or -1 for all realms.
`text` = Text for Motd
Specified realmId is prioritized over -1 (All Realms)
For example:
You have realm 1, 2, 3
(-1, "This Motd will show for 2, 3")
(1, "This Motd will show for 1")