Skip to content

Commit

Permalink
Merge branch 'release_24.0' into 'release_24.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Apr 2, 2024
2 parents dbcde76 + 33505f7 commit a21c219
Show file tree
Hide file tree
Showing 17 changed files with 1,652 additions and 5 deletions.
2 changes: 2 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15652,6 +15652,7 @@ export interface operations {
parameters?: {
/** @description The maximum number of items to return. */
/** @description Starts at the beginning skip the first ( offset - 1 ) items and begin returning at the Nth item */
/** @description Whether to include archived histories. */
/** @description Sort index by this specified attribute */
/** @description Sort in descending order? */
/**
Expand Down Expand Up @@ -15703,6 +15704,7 @@ export interface operations {
show_own?: boolean;
show_published?: boolean;
show_shared?: boolean;
show_archived?: boolean | null;
sort_by?: "create_time" | "name" | "update_time" | "username";
sort_desc?: boolean;
search?: string | null;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Grid/configs/historiesPublished.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ async function getData(offset: number, limit: number, search: string, sort_by: s
show_own: false,
show_published: true,
show_shared: false,
show_archived: true,
});
const totalMatches = parseInt(headers.get("total_matches") ?? "0");
return [data, totalMatches];
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Grid/configs/historiesShared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ async function getData(offset: number, limit: number, search: string, sort_by: s
show_own: false,
show_published: false,
show_shared: true,
show_archived: true,
});
const totalMatches = parseInt(headers.get("total_matches") ?? "0");
return [data, totalMatches];
Expand Down
Loading

0 comments on commit a21c219

Please sign in to comment.