mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-08-01 15:34:30 +02:00
Add auto sig editor docs
This commit is contained in:
parent
0cae6e656d
commit
4397e94379
2 changed files with 32 additions and 9 deletions
|
@ -85,6 +85,7 @@
|
||||||
- [Node to Node Messaging]({{ site.baseurl }}{% link modding/node-msg.md %})
|
- [Node to Node Messaging]({{ site.baseurl }}{% link modding/node-msg.md %})
|
||||||
- [Top X]({{ site.baseurl }}{% link modding/top-x.md %})
|
- [Top X]({{ site.baseurl }}{% link modding/top-x.md %})
|
||||||
- [2FA/OTP Config]({{ site.baseurl }}{% link modding/user-2fa-otp-config.md %})
|
- [2FA/OTP Config]({{ site.baseurl }}{% link modding/user-2fa-otp-config.md %})
|
||||||
|
- [Auto Signature Editor]({{ site.baseurl }}{% link modding/autosig-edit.md %})
|
||||||
|
|
||||||
- Administration
|
- Administration
|
||||||
- [oputil]({{ site.baseurl }}{% link admin/oputil.md %})
|
- [oputil]({{ site.baseurl }}{% link admin/oputil.md %})
|
||||||
|
|
22
docs/modding/autosig-edit.md
Normal file
22
docs/modding/autosig-edit.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: Auto Signature Editor
|
||||||
|
---
|
||||||
|
## The Auto Signature Editor
|
||||||
|
The built in `autosig_edit` module allows users to edit their auto signatures (AKA "autosig").
|
||||||
|
|
||||||
|
### Theming
|
||||||
|
The following MCI codes are available:
|
||||||
|
* MCI 1 (ie: `MT1`): Editor
|
||||||
|
* MCI 2 (ie: `BT2`): Save button
|
||||||
|
|
||||||
|
### Disabling Auto Signatures
|
||||||
|
Auto Signature support can be disabled for a particular message area by setting `autoSignatures` to false in the area's configuration block.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
```hjson
|
||||||
|
my_area: {
|
||||||
|
name: My Area
|
||||||
|
autoSignatures: false
|
||||||
|
}
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue