Skip to content

Commit

Permalink
doc: members_only flag for channel feeds (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
valerierose authored Oct 4, 2024
1 parent 8d1c9fd commit d9720f5
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/v2/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4419,7 +4419,13 @@ paths:
in: query
schema:
type: string
description: Used when filter_type=channel_id can be used to fetch all casts under a channel. Requires feed_type and filter_type
description: Used when filter_type=channel_id can be used to fetch casts under a channel. Requires feed_type and filter_type.
- name: members_only
in: query
description: Used when filter_type=channel_id. Only include casts from members of the channel. True by default.
schema:
type: boolean
default: true
- name: embed_url
in: query
schema:
Expand Down Expand Up @@ -4732,6 +4738,12 @@ paths:
schema:
type: boolean
default: false
- name: members_only
in: query
description: Only include casts from members of the channel. True by default.
schema:
type: boolean
default: true
- name: limit
in: query
description: Number of results to retrieve (default 25, max 100)
Expand All @@ -4748,6 +4760,7 @@ paths:
- name: should_moderate
in: query
description: If true, only casts that have been liked by the moderator (if one exists) will be returned.
deprecated: true
schema:
type: boolean
default: false
Expand Down

0 comments on commit d9720f5

Please sign in to comment.