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
392 393 394 395 396 397 398 399 |
# File 'lib/facebooker/models/user.rb', line 392 def status=() case when String,Status @status = when Hash @status = Status.from_hash() end end |