Sha256: ae8ff7c0819d67b10b130a22b02386b5d49c0ac260bc0df171ec906fa3ecb0df
Contents?: true
Size: 539 Bytes
Versions: 21
Compression:
Stored size: 539 Bytes
Contents
module MeducationSDK class Group < Loquor::Resource self.path = "/groups" def created_by @created_by = User.find(created_by_id) end def admins [created_by] end end class GroupMock < Group extend Loquor::ResourceMock self.attributes = { id: 1, name: "A great group", description: "Some description of a group", created_by_id: 23, image_url: "http://i.telegraph.co.uk/multimedia/archive/02351/cross-eyed-cat_2351472k.jpg", url: "my_url" } end end
Version data entries
21 entries across 21 versions & 1 rubygems
Version | Path |
---|---|
meducation_sdk-0.7.0 | lib/meducation_sdk/resources/group.rb |