From ff232db4bc55cce699a3bb40aba59644f87af7a3 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Tue, 4 Apr 2023 12:13:12 -0400 Subject: [PATCH] getCOnfig --- ttrss/ApiClient.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ttrss/ApiClient.cs b/ttrss/ApiClient.cs index 5ed6a50..6d03a37 100644 --- a/ttrss/ApiClient.cs +++ b/ttrss/ApiClient.cs @@ -492,10 +492,15 @@ namespace ttrss_co_client.ttrss }); return await get>(json); } - public async Task GetConfig() + public async Task GetConfig() { assertInitialized(); - throw new NotImplementedException(); + var json = JsonContent.Create(new + { + op = "getConfig", + sid = this.SessionId + }); + return await get(json); } /// ///tell the feed to update. As opposed to updating our configuration of the feed.