Skip to content
Snippets Groups Projects
Commit 7b39f773 authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

#19: add ownerId and ownerListForSol to the solution model

parent 501db5f6
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,8 @@ export class SharedDataService {
revisions: [],
catalogNames: [],
publisher: '',
ownerId: '',
ownerListForSol: [],
});
private _imageToShowSubject: BehaviorSubject<any> = new BehaviorSubject<any>(
null,
......
......@@ -18,6 +18,8 @@ export interface PublicSolutionsRequestPayload {
export interface Solution {
name: string;
ownerName: string;
ownerId: string;
ownerListForSol: { userId: string; firstName: string; lastName: string }[];
active: boolean;
sourceId: string;
authors: AuthorPublisherModel[];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment