Sha256: 9899fa4316f3dfb01378e43e2e526b3ec0170c998bdf7b02ce640b7cf74ac917
Contents?: true
Size: 457 Bytes
Versions: 37
Compression:
Stored size: 457 Bytes
Contents
module FbGraph2 class Edge module Translations def translations(params = {}) translations = self.edge :translations, params translations.collect! do |translation| Translation.new(translation[:id], translation).authenticate self.authenticate end end def translation!(params = {}) self.post params, edge: :translations end alias_method :translate!, :translation! end end end
Version data entries
37 entries across 37 versions & 1 rubygems