Skip to content

Commit

Permalink
fix(hub-discussions): add author and editor to isearchchannels (#1257)
Browse files Browse the repository at this point in the history
  • Loading branch information
brittneyjb authored Oct 4, 2023
1 parent a37747c commit 5d22e8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/common/src/discussions/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -890,12 +890,16 @@ export interface IFetchChannel {
* @extends {Partial<IWithSorting<ChannelSort>>}
* @extends {Partial<IWithTimeQueries>}
* @extends {Partial<IWithFiltering<ChannelFilter>>}
* @extends {Partial<IWithAuthor>}
* @extends {Partial<IWithEditor>}
*/
export interface ISearchChannels
extends Partial<IPagingParams>,
Partial<IWithSorting<ChannelSort>>,
Partial<IWithTimeQueries>,
Partial<IWithFiltering<ChannelFilter>> {
Partial<IWithFiltering<ChannelFilter>>,
Partial<IWithAuthor>,
Partial<IWithEditor> {
groups?: string[];
access?: SharingAccess[];
relations?: ChannelRelation[];
Expand Down

0 comments on commit 5d22e8b

Please sign in to comment.