diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-12-11 22:08:29 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-12-11 22:08:29 +0000 |
commit | 8020192562fbdd963ad08cb68165c382e6fcadfd (patch) | |
tree | 39ae3f824a3db347e8416435bc694f8d32f11a58 /lib/rbot | |
parent | 3021159615e5e6452d9f6d526d95ae7120e3fa46 (diff) |
auth: user tell should be in the 'manage' auth path, and thus forbidden by default
Diffstat (limited to 'lib/rbot')
-rw-r--r-- | lib/rbot/core/auth.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/core/auth.rb b/lib/rbot/core/auth.rb index 051b374b..b9a39767 100644 --- a/lib/rbot/core/auth.rb +++ b/lib/rbot/core/auth.rb @@ -889,7 +889,7 @@ auth.default_auth("user::manage::meet::hello", true) auth.map "user tell :user the password for :botuser",
:action => 'auth_tell_password',
- :auth_path => '::'
+ :auth_path => ':manage:'
auth.map "user list",
:action => 'auth_list_users',
|