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