示例#1
0
 public Task RemoveMutesAsync(long userId, IEnumerable <long> removals)
 {
     return(_mutes.DeleteAllAsync(userId, removals));
 }
示例#2
0
 public Task RemoveBlockingsAsync(long userId, IEnumerable <long> removals)
 {
     return(_blockings.DeleteAllAsync(userId, removals));
 }
示例#3
0
 public Task RemoveNoRetweetsAsync(long userId, IEnumerable <long> removals)
 {
     return(_noRetweets.DeleteAllAsync(userId, removals));
 }
示例#4
0
 public Task RemoveFollowersAsync(long userId, IEnumerable <long> removals)
 {
     return(_followers.DeleteAllAsync(userId, removals));
 }
示例#5
0
 public async Task RemoveNoRetweetsAsync(long userId, IEnumerable <long> removals)
 {
     await _noRetweets.DeleteAllAsync(userId, removals);
 }
示例#6
0
 public async Task RemoveBlockingsAsync(long userId, IEnumerable <long> removals)
 {
     await _blockings.DeleteAllAsync(userId, removals);
 }
示例#7
0
 public async Task RemoveFollowersAsync(long userId, IEnumerable <long> removals)
 {
     await _followers.DeleteAllAsync(userId, removals);
 }
示例#8
0
 public async Task RemoveMutesAsync(long userId, IEnumerable <long> removals)
 {
     await _mutes.DeleteAllAsync(userId, removals);
 }