diff options
author | Ilja <domainepublic@spectraltheorem.be> | 2020-08-02 15:54:59 +0200 |
---|---|---|
committer | Ilja <domainepublic@spectraltheorem.be> | 2020-08-02 15:54:59 +0200 |
commit | f671d7e68c77e5d41dd0716f48f387561efc3999 (patch) | |
tree | bc0dd5b322743634ff66acd19f6d3a1350a32ee3 /docs/configuration | |
parent | 8ca993c789fb3d41450419fc49bfa22542368ba8 (diff) | |
download | pleroma-f671d7e68c77e5d41dd0716f48f387561efc3999.tar.gz |
Add welcome chatmessages
* I added the option in config/config.exs
* created a new module lib/pleroma/user/welcome_chat_message.ex
* Added it to the registration flow
* added to the cheatsheet
* added to the config/description.ex
* added to the Changelog.md
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/cheatsheet.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 9c768abef..59c3fb06d 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -69,6 +69,10 @@ To add configuration to your config file, you can copy it from the base config. * `enabled`: Enables the send a direct message to a newly registered user. Defaults to `false`. * `sender_nickname`: The nickname of the local user that sends the welcome message. * `message`: A message that will be send to a newly registered users as a direct message. +* `chat_message`: - welcome message sent as a chat message. + * `enabled`: Enables the send a chat message to a newly registered user. Defaults to `false`. + * `sender_nickname`: The nickname of the local user that sends the welcome message. + * `message`: A message that will be send to a newly registered users as a chat message. * `email`: - welcome message sent as a email. * `enabled`: Enables the send a welcome email to a newly registered user. Defaults to `false`. * `sender`: The email address or tuple with `{nickname, email}` that will use as sender to the welcome email. |