This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 0091e885 authored by Daniel Crazzolara's avatar Daniel Crazzolara
Browse files

Corrected exercise-model attribute to 'creator'

parent 5cf7ee31
Branches
2 merge requests!188Merging Peer Reviewing et. al to Master,!164211 peer reviewing functionality
This diff is collapsed.
......@@ -75,7 +75,7 @@ export class SearchComponent implements OnInit {
description: searchResult.metadata.description,
programmingLanguages: searchResult.metadata.programmingLanguage,
languages: searchResult.metadata.language,
creators: searchResult.metadata.creator,
creator: searchResult.metadata.creator,
contributor: searchResult.metadata.contributor,
publisher: searchResult.metadata.publisher,
imageURL: searchResult.metadata.image,
......
......@@ -10,7 +10,7 @@ export enum ExerciseMode {
export class ArtemisExerciseInfo implements Exercise {
constructor(
public contributor: Person[],
public creators: Person[],
public creator: Person[],
public deprecated: boolean,
public description: string,
public downloads: number,
......
......@@ -34,7 +34,7 @@ export interface Exercise {
description: string;
programmingLanguages: string[];
languages: string[];
creators: Person[];
creator: Person[];
publisher: Person[];
contributor: Person[];
requires: string[];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment