Method: Facebooker::User#status=

Defined in:
lib/facebooker/models/user.rb

#status=(message) ⇒ Object

This DOES NOT set the status of a user on Facebook Use the set_status method instead



434
435
436
437
438
439
440
441
# File 'lib/facebooker/models/user.rb', line 434

def status=(message)
  case message
  when String,Status
    @status = message
  when Hash
    @status = Status.from_hash(message)
  end
end