Sha256: bee82eba22e03fa3996d6fba74a8e7ace7f48f934203fefb54e6b2c6187e6ca3
Contents?: true
Size: 952 Bytes
Versions: 3
Compression:
Stored size: 952 Bytes
Contents
module Troo module External class Comment < Resource class << self def fetch(external_id, options = {}) new(external_id, options).fetch_by_external_id.map do |resource| CommentPersistence.for(resource) end end end def initialize(external_id, options = {}) @external_id = external_id @options = options end private attr_reader :external_id def options defaults.merge!(@options) end def defaults { mode: :board } end def by_board_id Trello::Board.find(external_id).actions({ filter: "commentCard" }) end def by_list_id Trello::List.find(external_id).actions({ filter: "commentCard" }) end def by_card_id Trello::Card.find(external_id).actions({ filter: "commentCard" }) end def by_member_id [] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
troo-0.0.7 | lib/troo/external/comment.rb |
troo-0.0.6 | lib/troo/external/comment.rb |
troo-0.0.5 | lib/troo/external/comment.rb |