diff options
-rw-r--r-- | lib/rbot/core/auth.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/rbot/core/auth.rb b/lib/rbot/core/auth.rb index 175d2153..f6f4a125 100644 --- a/lib/rbot/core/auth.rb +++ b/lib/rbot/core/auth.rb @@ -954,14 +954,15 @@ auth.map "permissions set *args", auth.map "permissions reset *args",
:action => 'auth_edit_perm',
- :auth_path => ':edit::reset:'
+ :auth_path => ':edit::set:'
auth.map "permissions view [for :user]",
:action => 'auth_view_perm',
:auth_path => '::'
auth.map "permissions search *pattern",
- :action => 'auth_search_perm'
+ :action => 'auth_search_perm',
+ :auth_path => '::'
auth.default_auth('*', false)
|