Skip to content

Commit

Permalink
Финал
Browse files Browse the repository at this point in the history
  • Loading branch information
nikss2358 committed Jun 16, 2024
1 parent 40af651 commit a9e833f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ public ResponseEntity<Void> init(@RequestHeader final HttpHeaders headers) throw
}


@RequestMapping(value = "/get-test-data", method = RequestMethod.GET, produces = APPLICATION_JSON_VALUE)
public ResponseEntity<List<Project>> getTestData() {
@RequestMapping(value = "/get-test-projects", method = RequestMethod.GET, produces = APPLICATION_JSON_VALUE)
public ResponseEntity<List<Project>> getTestProjects() {

// region PROJECT 1

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.business.intelligence.service.repository;

import com.business.intelligence.service.model.building.Comment;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface CommentRepository extends JpaRepository<Comment, Integer> {
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

@SpringBootTest
class ApplicationTests {

@Test
void contextLoads() {
}
//
// @Test
// void contextLoads() {
// }

}

0 comments on commit a9e833f

Please sign in to comment.