class Edools::Core::Student

Public Instance Methods

to_json(options={}) click to toggle source
Calls superclass method
# File lib/edools/core/student.rb, line 12
def to_json(options={})
  super(include_root_in_json ? { root: 'user' }.merge(options) : options)
end
to_xml(options={}) click to toggle source
Calls superclass method
# File lib/edools/core/student.rb, line 16
def to_xml(options={})
  super({ root: 'user' }.merge(options))
end