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

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

Corrected exercise-model attribute to 'creator'

parent 9260be42
Branches
Tags
2 merge requests!62created achievementService and separated some functionality out of...,!61Feature/#51 import from artemis
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