From a3dc8d973b49d6a4bf1446093c194aed5f69916f Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Tue, 29 Aug 2006 09:49:58 +0000 Subject: Introduce BotConfigValue permissions, to protect particularly sensitive config options while still allowing access to more innocent ones --- lib/rbot/config.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/rbot/config.rb') diff --git a/lib/rbot/config.rb b/lib/rbot/config.rb index e8cea284..ef079429 100644 --- a/lib/rbot/config.rb +++ b/lib/rbot/config.rb @@ -25,6 +25,7 @@ module Irc attr_reader :requires_rescan attr_reader :order attr_reader :manager + attr_reader :auth_path def initialize(key, params) @manager = BotConfig::configmanager # Keys must be in the form 'module.name'. @@ -48,6 +49,7 @@ module Irc @wizard = params[:wizard] @requires_restart = params[:requires_restart] @requires_rescan = params[:requires_rescan] + @auth_path = "config::key::#{key.sub('.','::')}" end def default if @default.instance_of?(Proc) -- cgit v1.2.3