14 lines
324 B
Ruby
14 lines
324 B
Ruby
module JamRuby
|
|
class IcecastPath < ActiveRecord::Base
|
|
|
|
self.primary_key = 'id'
|
|
|
|
attr_accessible :basedir, :logdir, :pidfile, :webroot, :adminroot, :allow_ip, :deny_ip, :aliass
|
|
attr_accessor :basedir, :logdir, :pidfile, :webroot, :adminroot, :allow_ip, :deny_ip, :aliass
|
|
|
|
def dumpXml()
|
|
|
|
end
|
|
|
|
end
|
|
end |