Run migrations! Added data migration for channel aliases

This commit is contained in:
Griatch 2021-05-14 23:05:59 +02:00
parent 51bef9bf97
commit 3218d74381
8 changed files with 72 additions and 31 deletions

View file

@ -170,7 +170,7 @@ The default `help` command has the following `locks` property:
locks = "cmd:not perm(channel_banned); admin:all(); manage:all(); changelocks: perm(Admin)"
```
This is a regular [lockstring](Locks).
This is a regular [lockstring](./Locks).
- `cmd: pperm(channel_banned)` - The `cmd` locktype is the standard one used for all Commands.
an accessing object failing this will not even know that the command exists. The `pperm()` lockfunc
@ -335,7 +335,7 @@ see the [Channel api docs](api:evennia.comms.comms.DefaultChannel) for details.
- `channel_prefix_string` - this property is a string to easily change how
the channel is prefixed. It takes the `channelname` format key. Default is `"[{channelname}] "`
and produces output like `[public] ...``.
- `subscriptions` - this is the [SubscriptionHandler](`api:evennia.comms.comms.SubscriptionHandler`), which
- `subscriptions` - this is the [SubscriptionHandler](api:evennia.comms.comms#SubscriptionHandler), which
has methods `has`, `add`, `remove`, `all`, `clear` and also `online` (to get
only actually online channel-members).
- `wholist`, `mutelist`, `banlist` are properties that return a list of subscribers,

View file

@ -66,7 +66,6 @@ in mind for your own game, this will give you a good start.
## Howto's
- [Giving Exits a default error](./Default-Exit-Errors)
- [Customize Channel output](./Customize-channels)
- [Add a command prompt](./Command-Prompt)
- [Don't allow spamming commands](./Command-Cooldown)
- [Commands that take time](./Command-Duration)

View file

@ -91,7 +91,6 @@
- [Howto/Command Duration](Howto/Command-Duration)
- [Howto/Command Prompt](Howto/Command-Prompt)
- [Howto/Coordinates](Howto/Coordinates)
- [Howto/Customize channels](Howto/Customize-channels)
- [Howto/Default Exit Errors](Howto/Default-Exit-Errors)
- [Howto/Evennia for Diku Users](Howto/Evennia-for-Diku-Users)
- [Howto/Evennia for MUSH Users](Howto/Evennia-for-MUSH-Users)