diff --git a/system/hackernews/hackernews.go b/system/hackernews/hackernews.go index ec8816d..8fc1d5e 100644 --- a/system/hackernews/hackernews.go +++ b/system/hackernews/hackernews.go @@ -56,10 +56,20 @@ func (sys *System) GetCapabilities() adapter.Capabilities { ID: "list:posts", Name: "List Posts", }, + // TODO: https://github.com/hermanschaaf/hackernews/issues/1 + // adapter.Capability{ + // ID: "create:post", + // Name: "Create Post", + // }, adapter.Capability{ ID: "list:replies", Name: "List Replies", }, + // TODO: https://github.com/hermanschaaf/hackernews/issues/1 + // adapter.Capability{ + // ID: "create:reply", + // Name: "Create Reply", + // }, ) return caps diff --git a/system/lemmy/lemmy.go b/system/lemmy/lemmy.go index d20265a..22585d1 100644 --- a/system/lemmy/lemmy.go +++ b/system/lemmy/lemmy.go @@ -50,14 +50,30 @@ func (sys *System) GetCapabilities() adapter.Capabilities { var caps []adapter.Capability caps = append(caps, + // TODO: https://github.com/Arsen6331/go-lemmy/issues/2 + // adapter.Capability{ + // ID: "list:forums", + // Name: "List Forums", + // }, adapter.Capability{ ID: "list:posts", Name: "List Posts", }, - adapter.Capability{ - ID: "create:post", - Name: "Create Post", - }, + // TODO: Not possible without list:forums + // adapter.Capability{ + // ID: "create:post", + // Name: "Create Post", + // }, + // TODO: https://github.com/Arsen6331/go-lemmy/issues/1 + // adapter.Capability{ + // ID: "list:replies", + // Name: "List Replies", + // }, + // TODO: Maybe possible but kind of pointless without list:replies + // adapter.Capability{ + // ID: "create:reply", + // Name: "Create Reply", + // }, ) return caps