Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
mmangino committed Sep 30, 2011
1 parent 1db5371 commit b58af15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/mogli/comment.rb
@@ -1,7 +1,7 @@
module Mogli
class Comment < Model

define_properties :id, :message, :created_time, :count
define_properties :id, :message, :created_time, :count, :likes
creation_properties :message
hash_populating_accessor :from, "User","Page"

Expand Down
2 changes: 1 addition & 1 deletion lib/mogli/page.rb
Expand Up @@ -5,7 +5,7 @@ class Page < Profile
define_properties :id, :name, :category, :username, :access_token

# General
define_properties :likes, :link, :picture, :has_added_app, :website, :description, :can_post, :checkins
define_properties :likes, :link, :picture, :has_added_app, :website, :description, :can_post, :checkins, :general_info

# Retail
define_properties :founded, :products, :mission, :company_overview
Expand Down
2 changes: 1 addition & 1 deletion lib/mogli/post.rb
Expand Up @@ -6,7 +6,7 @@ class Post < Model

define_properties :id, :to, :message, :picture, :link, :name, :caption,
:description, :source, :icon, :attribution, :actions, :likes,
:created_time, :updated_time, :privacy, :type
:created_time, :updated_time, :privacy, :type, :object_id, :properties

creation_properties :message, :picture, :link, :name, :description, :caption, :source, :actions, :privacy

Expand Down

0 comments on commit b58af15

Please sign in to comment.