We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45b1985 commit f54ee17Copy full SHA for f54ee17
activitystreams/activity.go
@@ -11,10 +11,7 @@ const (
11
toPublic = "https://www.w3.org/ns/activitystreams#Public"
12
)
13
14
-var Extensions = map[string]string{
15
- "sc": "http://schema.org#",
16
- "commentsEnabled": "sc:Boolean",
17
-}
+var Extensions = map[string]string{}
18
19
// Activity describes actions that have either already occurred, are in the
20
// process of occurring, or may occur in the future.
@@ -122,7 +119,7 @@ type Object struct {
122
119
Tag []Tag `json:"tag"`
123
120
124
121
// Extensions
125
- CommentsEnabled bool `json:"commentsEnabled"`
+ // NOTE: add extensions here
126
}
127
128
// NewNoteObject creates a basic Note object that includes the public
0 commit comments