summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2023-02-20 22:07:26 +0100
committerGitHub <noreply@github.com>2023-02-20 22:07:26 +0100
commit0c4feb674444210da295751a0c4e5eefb9c771f1 (patch)
tree14801993937fe841d7687231f844bc2b74083509 /doc
parentbd7f139bb8861e4c89651017b2371b9fa035a4a5 (diff)
refactor(Core/Motd): Move motd from conf to db (#15111)
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog/pendings/changes_1676759248142739600.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/changelog/pendings/changes_1676759248142739600.md b/doc/changelog/pendings/changes_1676759248142739600.md
new file mode 100644
index 0000000000..f4f8c945be
--- /dev/null
+++ b/doc/changelog/pendings/changes_1676759248142739600.md
@@ -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")