@@ -42,19 +42,19 @@ public async Task<Reaction> AddAsync(string reactionId, string kind, string acti
4242 }
4343
4444 public async Task < Reaction > AddChildAsync ( Reaction parent , string kind , string userId ,
45- IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null )
45+ IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null , string moderationTemplate = null )
4646 {
47- return await AddChildAsync ( parent . Id , null , kind , userId , data , targetFeeds ) ;
47+ return await AddChildAsync ( parent . Id , null , kind , userId , data , targetFeeds , moderationTemplate ) ;
4848 }
4949
5050 public async Task < Reaction > AddChildAsync ( string parentId , string kind , string userId ,
51- IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null )
51+ IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null , string moderationTemplate = null )
5252 {
53- return await AddChildAsync ( parentId , null , kind , userId , data , targetFeeds ) ;
53+ return await AddChildAsync ( parentId , null , kind , userId , data , targetFeeds , moderationTemplate ) ;
5454 }
5555
5656 public async Task < Reaction > AddChildAsync ( string parentId , string reactionId , string kind , string userId ,
57- IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null )
57+ IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null , string moderationTemplate = null )
5858 {
5959 var r = new Reaction ( )
6060 {
@@ -64,15 +64,16 @@ public async Task<Reaction> AddChildAsync(string parentId, string reactionId, st
6464 Data = data ,
6565 ParentId = parentId ,
6666 TargetFeeds = targetFeeds ,
67+ ModerationTemplate = moderationTemplate ,
6768 } ;
6869
6970 return await AddAsync ( r ) ;
7071 }
7172
7273 public async Task < Reaction > AddChildAsync ( Reaction parent , string reactionId , string kind , string userId ,
73- IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null )
74+ IDictionary < string , object > data = null , IEnumerable < string > targetFeeds = null , string moderationTemplate = null )
7475 {
75- return await AddChildAsync ( parent . Id , reactionId , kind , userId , data , targetFeeds ) ;
76+ return await AddChildAsync ( parent . Id , reactionId , kind , userId , data , targetFeeds , moderationTemplate ) ;
7677 }
7778
7879 public async Task < Reaction > GetAsync ( string reactionId )
0 commit comments