Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/programming-exercises/re…
Browse files Browse the repository at this point in the history
…vised-feedback' into feature/programming-exercises/revised-feedback
  • Loading branch information
dmytropolityka committed Sep 17, 2024
2 parents 3fa94a6 + 7ada9fe commit 1ba71f3
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 62 deletions.
113 changes: 59 additions & 54 deletions README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
import de.tum.cit.aet.artemis.core.security.annotations.EnforceAtLeastTutor;
import de.tum.cit.aet.artemis.core.service.AuthorizationCheckService;
import de.tum.cit.aet.artemis.core.util.HeaderUtil;
import de.tum.cit.aet.artemis.core.web.TeamWebsocketService;
import de.tum.cit.aet.artemis.exercise.domain.Exercise;
import de.tum.cit.aet.artemis.exercise.domain.Team;
import de.tum.cit.aet.artemis.exercise.domain.participation.StudentParticipation;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tum.cit.aet.artemis.core.web;
package de.tum.cit.aet.artemis.exercise.web;

import static de.tum.cit.aet.artemis.core.config.Constants.PROFILE_CORE;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tum.cit.aet.artemis.core.web;
package de.tum.cit.aet.artemis.lecture.web;

import static de.tum.cit.aet.artemis.core.config.Constants.PROFILE_CORE;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.tum.cit.aet.artemis.modeling.repository;

import static de.tum.cit.aet.artemis.core.config.Constants.PROFILE_APOLLON;
import static de.tum.cit.aet.artemis.core.config.Constants.PROFILE_CORE;

import java.util.List;

Expand All @@ -16,7 +16,7 @@
/**
* Spring Data JPA repository for the ApollonDiagram entity.
*/
@Profile(PROFILE_APOLLON)
@Profile(PROFILE_CORE)
@Repository
public interface ApollonDiagramRepository extends ArtemisJpaRepository<ApollonDiagram, Long> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.tum.cit.aet.artemis.modeling.web;

import static de.tum.cit.aet.artemis.core.config.Constants.PROFILE_APOLLON;
import static de.tum.cit.aet.artemis.core.config.Constants.PROFILE_CORE;

import java.net.URI;
import java.net.URISyntaxException;
Expand Down Expand Up @@ -35,7 +35,7 @@
/**
* REST controller for managing ApollonDiagram.
*/
@Profile(PROFILE_APOLLON)
@Profile(PROFILE_CORE)
@RestController
@RequestMapping("api/")
public class ApollonDiagramResource {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.tum.cit.aet.artemis.core.web;
package de.tum.cit.aet.artemis.programming.web;

import static de.tum.cit.aet.artemis.core.config.Constants.PROFILE_CORE;
import static de.tum.cit.aet.artemis.core.util.TimeLogUtil.formatDurationFrom;
Expand Down

0 comments on commit 1ba71f3

Please sign in to comment.