Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kzlprd 724 etq utilisateur jvp cr er des rapport type par soft tenants et par groupes #388

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/modules/asset/AssetsGroupsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ export class AssetsGroupsController {
lastUpdate: Date.now(),
name: body.name,
parent: body.parent ?? null,
type: body.type ?? "",
cyrng marked this conversation as resolved.
Show resolved Hide resolved
},
_id,
);
Expand Down
8 changes: 8 additions & 0 deletions lib/modules/asset/collections/assetsGroupsMapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ export const assetGroupsMappings: CollectionMappings = {
},
type: "keyword",
},
type: {
fields: {
text: {
type: "text",
},
},
type: "keyword",
},
lastUpdate: {
type: "date",
},
Expand Down
1 change: 1 addition & 0 deletions lib/modules/asset/types/AssetGroupContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { KDocumentContent } from "kuzzle-sdk";

export interface AssetsGroupsBody {
name: string;
type: string;
children: string[];
parent: string | null;
lastUpdate: number;
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/asset/types/AssetGroupsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { AssetsGroupsBody, AssetsGroupContent } from "./AssetGroupContent";
type AssetsGroupsRequest = Omit<AssetsGroupsBody, "lastUpdate">;
// Make "parent" property to optional for request
export type AssetsGroupsBodyRequest = Partial<AssetsGroupsRequest> &
Omit<AssetsGroupsRequest, "parent">;
Omit<AssetsGroupsRequest, "parent" | "type">;

export type UpdateAssetLinkResponse = mUpdateResponse & {
assetsGroups: KDocument<AssetsGroupContent>;
Expand Down
Loading