Skip to content

Commit

Permalink
url fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-zivkovic-plassido committed Jan 24, 2023
1 parent 4694408 commit 07807ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion klupa-frontend/src/app/services/category.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Category from '../models/category.model';
})
export class CategoryService {

private CATEGORIES_ENDPOINT = "/assets/categories/categories.json"; // TODO: replace mock after backend is finished
private CATEGORIES_ENDPOINT = 'assets/categories/categories.json'; // TODO: replace mock after backend is finished

constructor(private http: HttpClient) { }

Expand Down
2 changes: 1 addition & 1 deletion klupa-frontend/src/app/services/question.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Question from '../models/question.model';
providedIn: 'root'
})
export class QuestionService {
private QUESTIONS_ENDPOINT = "/assets/questions/"; // TODO: replace mock after backend is finished
private QUESTIONS_ENDPOINT = 'assets/questions/'; // TODO: replace mock after backend is finished

constructor(private http: HttpClient) { }

Expand Down

0 comments on commit 07807ba

Please sign in to comment.