jam-cloud/ruby/lib/jam_ruby/models/icecast_user_authentication.rb

17 lines
531 B
Ruby

module JamRuby
class IcecastUserAuthentication < ActiveRecord::Base
self.primary_key = 'id'
attr_accessible :stype, :filename, :allow_duplicate_users, :mount_add, :mount_remove,
:listener_add, :listener_remove, :username, :password, :auth_header, :timelimit_header
attr_accessor :stype, :filename, :allow_duplicate_users, :mount_add, :mount_remove,
:listener_add, :listener_remove, :username, :password, :auth_header, :timelimit_header
def dumpXml()
end
end
end