From a0941d2a8a961809b506ad51c3cff07fc88ed5cf Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Wed, 19 Nov 2014 22:00:25 +0100 Subject: [PATCH] add status to readme --- FeedlySharp/Endpoints/{User.cs => Profile.cs} | 4 ++-- FeedlySharp/Endpoints/{Topic.cs => Topics.cs} | 0 README.md | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) rename FeedlySharp/Endpoints/{User.cs => Profile.cs} (65%) rename FeedlySharp/Endpoints/{Topic.cs => Topics.cs} (100%) diff --git a/FeedlySharp/Endpoints/User.cs b/FeedlySharp/Endpoints/Profile.cs similarity index 65% rename from FeedlySharp/Endpoints/User.cs rename to FeedlySharp/Endpoints/Profile.cs index 8bdf371..27d3aa4 100644 --- a/FeedlySharp/Endpoints/User.cs +++ b/FeedlySharp/Endpoints/Profile.cs @@ -10,13 +10,13 @@ namespace FeedlySharp { public partial class FeedlyClient { - public async Task GetUser(CancellationToken cancellationToken = default(CancellationToken)) + public async Task GetProfile(CancellationToken cancellationToken = default(CancellationToken)) { return await Client.Request(HttpMethod.Get, "v3/profile", null, false, true, cancellationToken); } - public async Task UpdateUser(Dictionary parameters, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateProfile(Dictionary parameters, CancellationToken cancellationToken = default(CancellationToken)) { return await Client.Request(HttpMethod.Post, "v3/profile", parameters, true, true, cancellationToken); } diff --git a/FeedlySharp/Endpoints/Topic.cs b/FeedlySharp/Endpoints/Topics.cs similarity index 100% rename from FeedlySharp/Endpoints/Topic.cs rename to FeedlySharp/Endpoints/Topics.cs diff --git a/README.md b/README.md index 60c58f1..4d09bd1 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,24 @@ --- +## Status + +1. ✔ Authentication / OAuth +2. ✔ Categories endpoint +3. ✔ Profile endpoint +4. ✔ Preferences endpoint +5. ✔ Tags endpoint +6. ✔ Topics endpoint +7. ✔ OPML endpoint +8. Entries endpoint +9. Feeds endpoint +10. Markers endpoint +11. Mixes endpoint +12. Search endpoint +13. Streams endpoint +14. Subscriptions endpoint +15. Social endpoint (Dropbox, Evernote, Facebook, Microsoft, Twitter) + ## Supported platforms FeedlySharp is a **Portable Class Library**, therefore it's compatible with multiple platforms and Universal Apps: