├── .gitignore ├── Readme.md ├── polling-app-client ├── .gitignore ├── README.md ├── config-overrides.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.png │ ├── index.html │ └── manifest.json ├── src │ ├── app │ │ ├── App.css │ │ └── App.js │ ├── common │ │ ├── AppHeader.css │ │ ├── AppHeader.js │ │ ├── LoadingIndicator.js │ │ ├── NotFound.css │ │ ├── NotFound.js │ │ ├── PrivateRoute.js │ │ ├── ServerError.css │ │ └── ServerError.js │ ├── constants │ │ └── index.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── poll.svg │ ├── poll │ │ ├── NewPoll.css │ │ ├── NewPoll.js │ │ ├── Poll.css │ │ ├── Poll.js │ │ ├── PollList.css │ │ └── PollList.js │ ├── registerServiceWorker.js │ ├── user │ │ ├── login │ │ │ ├── Login.css │ │ │ └── Login.js │ │ ├── profile │ │ │ ├── Profile.css │ │ │ └── Profile.js │ │ └── signup │ │ │ ├── Signup.css │ │ │ └── Signup.js │ └── util │ │ ├── APIUtils.js │ │ ├── Colors.js │ │ └── Helpers.js └── yarn.lock └── polling-app-server ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── example │ │ └── polls │ │ ├── PollsApplication.java │ │ ├── config │ │ ├── AuditingConfig.java │ │ ├── SecurityConfig.java │ │ └── WebMvcConfig.java │ │ ├── controller │ │ ├── AuthController.java │ │ ├── PollController.java │ │ └── UserController.java │ │ ├── exception │ │ ├── AppException.java │ │ ├── BadRequestException.java │ │ └── ResourceNotFoundException.java │ │ ├── model │ │ ├── Choice.java │ │ ├── ChoiceVoteCount.java │ │ ├── Poll.java │ │ ├── Role.java │ │ ├── RoleName.java │ │ ├── User.java │ │ ├── Vote.java │ │ └── audit │ │ │ ├── DateAudit.java │ │ │ └── UserDateAudit.java │ │ ├── payload │ │ ├── ApiResponse.java │ │ ├── ChoiceRequest.java │ │ ├── ChoiceResponse.java │ │ ├── JwtAuthenticationResponse.java │ │ ├── LoginRequest.java │ │ ├── PagedResponse.java │ │ ├── PollLength.java │ │ ├── PollRequest.java │ │ ├── PollResponse.java │ │ ├── SignUpRequest.java │ │ ├── UserIdentityAvailability.java │ │ ├── UserProfile.java │ │ ├── UserSummary.java │ │ └── VoteRequest.java │ │ ├── repository │ │ ├── PollRepository.java │ │ ├── RoleRepository.java │ │ ├── UserRepository.java │ │ └── VoteRepository.java │ │ ├── security │ │ ├── CurrentUser.java │ │ ├── CustomUserDetailsService.java │ │ ├── JwtAuthenticationEntryPoint.java │ │ ├── JwtAuthenticationFilter.java │ │ ├── JwtTokenProvider.java │ │ └── UserPrincipal.java │ │ ├── service │ │ └── PollService.java │ │ └── util │ │ ├── AppConstants.java │ │ └── ModelMapper.java └── resources │ ├── application.properties │ ├── db │ └── migration │ │ ├── V1__schema.sql │ │ └── V2__default_roles.sql │ ├── default-roles.sql │ └── static │ ├── asset-manifest.json │ ├── favicon.png │ ├── index.html │ ├── manifest.json │ ├── service-worker.js │ └── static │ ├── css │ ├── main.91ddec36.css │ └── main.91ddec36.css.map │ ├── js │ ├── main.cf1945d2.js │ └── main.cf1945d2.js.map │ └── media │ └── poll.1bc024be.svg └── test └── java └── com └── example └── polls └── PollsApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/Readme.md -------------------------------------------------------------------------------- /polling-app-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/.gitignore -------------------------------------------------------------------------------- /polling-app-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/README.md -------------------------------------------------------------------------------- /polling-app-client/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/config-overrides.js -------------------------------------------------------------------------------- /polling-app-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/package-lock.json -------------------------------------------------------------------------------- /polling-app-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/package.json -------------------------------------------------------------------------------- /polling-app-client/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/public/favicon.png -------------------------------------------------------------------------------- /polling-app-client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/public/index.html -------------------------------------------------------------------------------- /polling-app-client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/public/manifest.json -------------------------------------------------------------------------------- /polling-app-client/src/app/App.css: -------------------------------------------------------------------------------- 1 | .app-content { 2 | margin-top: 64px; 3 | } -------------------------------------------------------------------------------- /polling-app-client/src/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/app/App.js -------------------------------------------------------------------------------- /polling-app-client/src/common/AppHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/AppHeader.css -------------------------------------------------------------------------------- /polling-app-client/src/common/AppHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/AppHeader.js -------------------------------------------------------------------------------- /polling-app-client/src/common/LoadingIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/LoadingIndicator.js -------------------------------------------------------------------------------- /polling-app-client/src/common/NotFound.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/NotFound.css -------------------------------------------------------------------------------- /polling-app-client/src/common/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/NotFound.js -------------------------------------------------------------------------------- /polling-app-client/src/common/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/PrivateRoute.js -------------------------------------------------------------------------------- /polling-app-client/src/common/ServerError.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/ServerError.css -------------------------------------------------------------------------------- /polling-app-client/src/common/ServerError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/common/ServerError.js -------------------------------------------------------------------------------- /polling-app-client/src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/constants/index.js -------------------------------------------------------------------------------- /polling-app-client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/index.css -------------------------------------------------------------------------------- /polling-app-client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/index.js -------------------------------------------------------------------------------- /polling-app-client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/logo.svg -------------------------------------------------------------------------------- /polling-app-client/src/poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/poll.svg -------------------------------------------------------------------------------- /polling-app-client/src/poll/NewPoll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/poll/NewPoll.css -------------------------------------------------------------------------------- /polling-app-client/src/poll/NewPoll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/poll/NewPoll.js -------------------------------------------------------------------------------- /polling-app-client/src/poll/Poll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/poll/Poll.css -------------------------------------------------------------------------------- /polling-app-client/src/poll/Poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/poll/Poll.js -------------------------------------------------------------------------------- /polling-app-client/src/poll/PollList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/poll/PollList.css -------------------------------------------------------------------------------- /polling-app-client/src/poll/PollList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/poll/PollList.js -------------------------------------------------------------------------------- /polling-app-client/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/registerServiceWorker.js -------------------------------------------------------------------------------- /polling-app-client/src/user/login/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/user/login/Login.css -------------------------------------------------------------------------------- /polling-app-client/src/user/login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/user/login/Login.js -------------------------------------------------------------------------------- /polling-app-client/src/user/profile/Profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/user/profile/Profile.css -------------------------------------------------------------------------------- /polling-app-client/src/user/profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/user/profile/Profile.js -------------------------------------------------------------------------------- /polling-app-client/src/user/signup/Signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/user/signup/Signup.css -------------------------------------------------------------------------------- /polling-app-client/src/user/signup/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/user/signup/Signup.js -------------------------------------------------------------------------------- /polling-app-client/src/util/APIUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/util/APIUtils.js -------------------------------------------------------------------------------- /polling-app-client/src/util/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/util/Colors.js -------------------------------------------------------------------------------- /polling-app-client/src/util/Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/src/util/Helpers.js -------------------------------------------------------------------------------- /polling-app-client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-client/yarn.lock -------------------------------------------------------------------------------- /polling-app-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/.gitignore -------------------------------------------------------------------------------- /polling-app-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /polling-app-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /polling-app-server/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/mvnw -------------------------------------------------------------------------------- /polling-app-server/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/mvnw.cmd -------------------------------------------------------------------------------- /polling-app-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/pom.xml -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/PollsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/PollsApplication.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/config/AuditingConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/config/AuditingConfig.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/config/SecurityConfig.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/config/WebMvcConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/config/WebMvcConfig.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/controller/AuthController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/controller/AuthController.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/controller/PollController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/controller/PollController.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/controller/UserController.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/exception/AppException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/exception/AppException.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/exception/BadRequestException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/exception/BadRequestException.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/exception/ResourceNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/exception/ResourceNotFoundException.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/Choice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/Choice.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/ChoiceVoteCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/ChoiceVoteCount.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/Poll.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/Poll.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/Role.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/RoleName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/RoleName.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/User.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/Vote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/Vote.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/audit/DateAudit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/audit/DateAudit.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/model/audit/UserDateAudit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/model/audit/UserDateAudit.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/ApiResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/ApiResponse.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/ChoiceRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/ChoiceRequest.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/ChoiceResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/ChoiceResponse.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/JwtAuthenticationResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/JwtAuthenticationResponse.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/LoginRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/LoginRequest.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/PagedResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/PagedResponse.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/PollLength.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/PollLength.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/PollRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/PollRequest.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/PollResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/PollResponse.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/SignUpRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/SignUpRequest.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/UserIdentityAvailability.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/UserIdentityAvailability.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/UserProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/UserProfile.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/UserSummary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/UserSummary.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/payload/VoteRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/payload/VoteRequest.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/repository/PollRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/repository/PollRepository.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/repository/RoleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/repository/RoleRepository.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/repository/UserRepository.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/repository/VoteRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/repository/VoteRepository.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/security/CurrentUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/security/CurrentUser.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/security/CustomUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/security/CustomUserDetailsService.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/security/JwtAuthenticationEntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/security/JwtAuthenticationEntryPoint.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/security/JwtAuthenticationFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/security/JwtAuthenticationFilter.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/security/JwtTokenProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/security/JwtTokenProvider.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/security/UserPrincipal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/security/UserPrincipal.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/service/PollService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/service/PollService.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/util/AppConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/util/AppConstants.java -------------------------------------------------------------------------------- /polling-app-server/src/main/java/com/example/polls/util/ModelMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/java/com/example/polls/util/ModelMapper.java -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/db/migration/V1__schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/db/migration/V1__schema.sql -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/db/migration/V2__default_roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/db/migration/V2__default_roles.sql -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/default-roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/default-roles.sql -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/asset-manifest.json -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/favicon.png -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/index.html -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/manifest.json -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/service-worker.js -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/static/css/main.91ddec36.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/static/css/main.91ddec36.css -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/static/css/main.91ddec36.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/static/css/main.91ddec36.css.map -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/static/js/main.cf1945d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/static/js/main.cf1945d2.js -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/static/js/main.cf1945d2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/static/js/main.cf1945d2.js.map -------------------------------------------------------------------------------- /polling-app-server/src/main/resources/static/static/media/poll.1bc024be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/main/resources/static/static/media/poll.1bc024be.svg -------------------------------------------------------------------------------- /polling-app-server/src/test/java/com/example/polls/PollsApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/spring-security-react-ant-design-polls-app/HEAD/polling-app-server/src/test/java/com/example/polls/PollsApplicationTests.java --------------------------------------------------------------------------------