public static void PostItem(this ActivityFeedService self, Account account, JID from, string type, string actionItem, string content, string contentUrl, object data)
 {
     self.PostItem(new XmppActivityFeedItem(account, from, type, actionItem, content, contentUrl, data));
 }
Exemple #2
0
 public ActivityEntryController(ActivityFeedService service)
 {
     _service = service;
 }
 public static void PostItem(this ActivityFeedService self, Account account, JID from, string type, string actionItem, string content, string contentUrl)
 {
     PostItem(self, account, from, type, actionItem, content, contentUrl, null);
 }