We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed068d5 commit 4c13128Copy full SHA for 4c13128
lib/Trello/Model/Card.php
@@ -775,6 +775,27 @@ public function getDateOfLastActivity()
775
return new \DateTime($this->data['dateLastActivity']);
776
}
777
778
+ /**
779
+ * {@inheritdoc}
780
+ */
781
+ public function getActions($params = array()) {
782
+ return $this->api->actions()->all($this->id, $params);
783
+ }
784
+
785
786
787
788
+ public function addComment($text) {
789
+ return $this->api->actions()->addComment($this->id, $text);
790
791
792
793
794
795
+ public function removeComment($commentId) {
796
+ return $this->api->actions()->removeComment($this->id, $commentId);
797
798
799
/**
800
* {@inheritdoc}
801
*/
0 commit comments