mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
f890ddac1b
- Fix possible type errors in add/removeDefaultPermissions by converting permlist values to sets. - Fix wrong permission string being checked in automode.<command>.#channel - automode: register and unregister default permissions on load/unload. - permissions: add an 'also_show' argument to checkPermissions(), to display alternative permissions that weren't directly checked.
36 lines
1.8 KiB
YAML
36 lines
1.8 KiB
YAML
# This file is an example of the permissions system in PyLink. Should you wish,
|
|
# you may copy the contents of this file and paste it into the configuration you're
|
|
# using.
|
|
# Permissions work by mapping hostmasks or exttargets to list of permissions, allowing
|
|
# you to fine tune which users have access to which commands.
|
|
|
|
# The permissions API is new, and optional for plugins. Currently, only Automode uses it.
|
|
|
|
# If you do not specify any permissions block in your configuration, PyLink will default to a
|
|
# permission set defined by plugins, which usually correspond to the list below, but can be
|
|
# changed on every release.
|
|
|
|
# This determines whether we should merge the plugin-default permissions with the ones specified
|
|
# in the permissions: block. Disabling this allows you greater control over the permissions
|
|
# PyLink gives, but you should check this file on every major update to see if any new permissions
|
|
# were added for commands. Otherwise, commands that were available before may cease to function!
|
|
permissions_merge_defaults: true
|
|
|
|
permissions:
|
|
# Note: It is a good idea to quote any exttargets or hostmasks so the configuration parser knows
|
|
# they are raw strings.
|
|
|
|
"$ircop":
|
|
# The default set of Automode permissions allow you to manage any channels you own in Relay.
|
|
# If Relay is not loaded, this check will fail. This has the ability of allowing local opers
|
|
# to manage their channels, but not abusing Automode to hack modes in other networks' relay
|
|
# channels.
|
|
- automode.manage.relay_owned
|
|
- automode.sync.relay_owned
|
|
"*!*@*":
|
|
# Everyone can use /msg Automode list on any channel.
|
|
- automode.list
|
|
"$pylinkacc":
|
|
# Those with an admin login in PyLink can do anything.
|
|
- "*"
|