This repository was archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTODO
64 lines (54 loc) · 1.67 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
* Endpoint testing
In the interest of decent test coverage and figuring out what this package
is missing, here's a list of every endpoint that needs to be tested.
Some of these may be already tested, but we're going assume not.
** Users
*** TODO "retrieve user"
*** TODO "follow user"
*** TODO "unfollow user"
*** TODO "list followed users"
*** TODO "list following users"
*** TODO "mute user"
*** TODO "unmute user"
*** TODO "list muted users"
*** TODO "search for users"
*** TODO "list reposters"
*** TODO "list starrers"
** Tokens
*** TODO "check current token"
** Posts
*** TODO "create post"
*** TODO "retrieve post"
*** TODO "delete post"
*** TODO "retrieve post replies"
*** TODO "retrieve user posts"
*** TODO "repost post"
*** TODO "unrepost post"
*** TODO "star post"
*** TODO "unstar post"
*** TODO "retrieve user starred posts"
*** TODO "retrieve posts mentioning user"
*** TODO "retrieve user personalized stream"
*** TODO "retrieve global stream"
*** TODO "retrieve tagged posts"
** Streams
*** TODO "retrieve realtime user personalized stream"
*** TODO "retrieve realtime multiple user personalized stream"
*** TODO "retrieve realtime public stream"
*** TODO "retrieve stream status"
*** TODO "control stream"
** Real-time updates
*** TODO "list subscriptions"
*** TODO "create subscription"
*** TODO "delete subscription"
*** TODO "delete all subscriptions"
** Filters
*** TODO "retrieve current user filters"
*** TODO "create filter"
*** TODO "retrieve filter"
*** TODO "delete filter"
** Authentication (Server-side flow)
*** TODO "authentication url"
*** TODO "get access token"
* TODO Resource versioning
Just flag all the structs with the api spec revision they're based on.