Method: Admin#do_Part
- Defined in:
- lib/gitall/plugins/admin.rb
#do_Part(m, channels = nil, reasons = nil) ⇒ Object
70 71 72 73 74 75 76 77 |
# File 'lib/gitall/plugins/admin.rb', line 70 def do_Part(m, channels = nil, reasons = nil) return unless authenticated? m if channels.nil? && reasons.nil? m.reply 'Syntax: part #channel1[,#channel2,#channel3] [reason1[,reason2,reason3]]' else m.reply 'Not implemented yet' end end |