├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── smartrep │ │ │ ├── SmartRepApplication.java │ │ │ ├── config │ │ │ └── SwaggerConfig.java │ │ │ ├── controller │ │ │ ├── DistrictController.java │ │ │ ├── ManagerTodoController.java │ │ │ ├── SocialMediaController.java │ │ │ ├── TodoEmployeeController.java │ │ │ └── UserController.java │ │ │ ├── dto │ │ │ ├── AuthenticationResponse.java │ │ │ ├── CreateDistrictDto.java │ │ │ ├── CreateSocialMediaDto.java │ │ │ ├── CreateUserDto.java │ │ │ ├── LoggedInDto.java │ │ │ ├── ManagerTodoDto.java │ │ │ ├── MarketingDto.java │ │ │ ├── SalariesDto.java │ │ │ ├── SocialMoney.java │ │ │ ├── TodoEmployeeDto.java │ │ │ └── UserLogin.java │ │ │ ├── entity │ │ │ ├── DistrictEntity.java │ │ │ ├── ManagerTodoEntity.java │ │ │ ├── SocialMediaEntity.java │ │ │ ├── TodoEmployeeEntity.java │ │ │ └── UserEntity.java │ │ │ ├── enums │ │ │ ├── Status.java │ │ │ └── UserRole.java │ │ │ ├── exception │ │ │ ├── AlreadyExistException.java │ │ │ └── ResourceNotFoundException.java │ │ │ ├── repository │ │ │ ├── DistrictRepository.java │ │ │ ├── ManagerTodoRepository.java │ │ │ ├── SocialMediaRepository.java │ │ │ ├── TodoEmployeeRepo.java │ │ │ └── UserRepository.java │ │ │ ├── response │ │ │ └── ErrorMassage.java │ │ │ └── service │ │ │ ├── DistrictService.java │ │ │ ├── ManagerTodoService.java │ │ │ ├── SocialMediaService.java │ │ │ ├── TodoEmployeeService.java │ │ │ └── UserService.java │ └── resources │ │ └── application.properties └── test │ └── java │ └── com │ └── example │ └── smartrep │ └── SmartRepApplicationTests.java └── system.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/SmartRepApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/SmartRepApplication.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/config/SwaggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/config/SwaggerConfig.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/controller/DistrictController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/controller/DistrictController.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/controller/ManagerTodoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/controller/ManagerTodoController.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/controller/SocialMediaController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/controller/SocialMediaController.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/controller/TodoEmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/controller/TodoEmployeeController.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/controller/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/AuthenticationResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/AuthenticationResponse.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/CreateDistrictDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/CreateDistrictDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/CreateSocialMediaDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/CreateSocialMediaDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/CreateUserDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/CreateUserDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/LoggedInDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/LoggedInDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/ManagerTodoDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/ManagerTodoDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/MarketingDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/MarketingDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/SalariesDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/SalariesDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/SocialMoney.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/SocialMoney.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/TodoEmployeeDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/TodoEmployeeDto.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/dto/UserLogin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/dto/UserLogin.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/entity/DistrictEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/entity/DistrictEntity.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/entity/ManagerTodoEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/entity/ManagerTodoEntity.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/entity/SocialMediaEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/entity/SocialMediaEntity.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/entity/TodoEmployeeEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/entity/TodoEmployeeEntity.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/entity/UserEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/entity/UserEntity.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/enums/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/enums/Status.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/enums/UserRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/enums/UserRole.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/exception/AlreadyExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/exception/AlreadyExistException.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/exception/ResourceNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/exception/ResourceNotFoundException.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/repository/DistrictRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/repository/DistrictRepository.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/repository/ManagerTodoRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/repository/ManagerTodoRepository.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/repository/SocialMediaRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/repository/SocialMediaRepository.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/repository/TodoEmployeeRepo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/repository/TodoEmployeeRepo.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/repository/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/response/ErrorMassage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/response/ErrorMassage.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/service/DistrictService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/service/DistrictService.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/service/ManagerTodoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/service/ManagerTodoService.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/service/SocialMediaService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/service/SocialMediaService.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/service/TodoEmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/service/TodoEmployeeService.java -------------------------------------------------------------------------------- /src/main/java/com/example/smartrep/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/java/com/example/smartrep/service/UserService.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/test/java/com/example/smartrep/SmartRepApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratovv/CourseWork/HEAD/src/test/java/com/example/smartrep/SmartRepApplicationTests.java -------------------------------------------------------------------------------- /system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=11 --------------------------------------------------------------------------------