aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-01-30 13:07:54 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-01-30 13:07:54 +0200
commit498af41f38b14372bd2f5eb9a0add7af95c40168 (patch)
tree31c00985399ee352c1a09f4d650f62696e117350 /src/DevHive.Services/Interfaces
parenta8cc808396a24f0a5e4262d07e3edae1a4e5fc1d (diff)
downloadDevHive-498af41f38b14372bd2f5eb9a0add7af95c40168.tar
DevHive-498af41f38b14372bd2f5eb9a0add7af95c40168.tar.gz
DevHive-498af41f38b14372bd2f5eb9a0add7af95c40168.zip
Fixed GetUserPosts implementation
Diffstat (limited to 'src/DevHive.Services/Interfaces')
-rw-r--r--src/DevHive.Services/Interfaces/IFeedService.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DevHive.Services/Interfaces/IFeedService.cs b/src/DevHive.Services/Interfaces/IFeedService.cs
index 1edba5a..b507b3b 100644
--- a/src/DevHive.Services/Interfaces/IFeedService.cs
+++ b/src/DevHive.Services/Interfaces/IFeedService.cs
@@ -6,5 +6,6 @@ namespace DevHive.Services.Interfaces
public interface IFeedService
{
Task<ReadPageServiceModel> GetPage(GetPageServiceModel getPageServiceModel);
+ Task<ReadPageServiceModel> GetUserPage(GetPageServiceModel model);
}
}