├── .editorconfig ├── .github └── workflows │ ├── deploy-api.yml │ ├── deploy-ui.yml │ └── tests.yml ├── .gitignore ├── Directory.Build.props ├── Directory.Packages.props ├── Dockerfile ├── Hackathon.sln ├── PrintPackageVersions.ps1 ├── README.md ├── docker ├── docker-compose.yml └── grafana │ └── provisioning │ ├── dashboards │ ├── all.yml │ └── hackathon.json │ └── datasources │ └── all.yml ├── src ├── Hackathon.API.Contracts │ ├── BaseCreateResponse.cs │ ├── Events │ │ ├── CreateEventRequest.cs │ │ ├── SetStatusRequest.cs │ │ └── UpdateEventRequest.cs │ ├── Hackathon.API.Contracts.csproj │ ├── Projects │ │ ├── ProjectCreateRequest.cs │ │ └── UpdateProjectFromGitBranchRequest.cs │ ├── Teams │ │ └── CreateTeamRequest.cs │ └── Users │ │ ├── SignInRequest.cs │ │ ├── SignUpRequest.cs │ │ ├── UpdateUserRequest.cs │ │ ├── UserEmailResponse.cs │ │ └── UserResponse.cs ├── Hackathon.API.Module │ ├── ApiModule.cs │ ├── BaseController.cs │ ├── Extensions │ │ └── OperationResultExtensions.cs │ ├── Hackathon.API.Module.csproj │ └── IApiModule.cs ├── Hackathon.API │ ├── Controllers │ │ ├── ApprovalApplications │ │ │ └── ApprovalApplicationsController.cs │ │ ├── AuthController.cs │ │ ├── Events │ │ │ └── EventController.cs │ │ ├── FriendshipController.cs │ │ ├── ProjectController.cs │ │ ├── Teams │ │ │ ├── PrivateTeamController.cs │ │ │ ├── PublicTeamController.cs │ │ │ └── TeamController.cs │ │ ├── UserController.cs │ │ └── UserProfileReactionController.cs │ ├── ExceptionActionFilter.cs │ ├── Extensions │ │ ├── AddAuthenticationExtension.cs │ │ ├── AddSwaggerExtension.cs │ │ └── JobsServiceCollectionExtensions.cs │ ├── Hackathon.API.csproj │ ├── MigrationsTool.cs │ ├── OriginHelper.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Stage.json │ ├── appsettings.Tests.json │ └── appsettings.json ├── Hackathon.BL.Validation │ ├── ApprovalApplications │ │ └── ApprovalApplicationRejectParametersValidator.cs │ ├── Common │ │ └── GetListParametersValidator.cs │ ├── Events │ │ ├── BaseEventParametersValidator.cs │ │ ├── ChangeEventStatusValidator.cs │ │ ├── CreateEventModelValidator.cs │ │ ├── EventsValidationMessages.cs │ │ └── UpdateEventModelValidator.cs │ ├── Hackathon.BL.Validation.csproj │ ├── Projects │ │ ├── BaseProjectParametersValidator.cs │ │ ├── LinkToGitBranchValidator.cs │ │ ├── ProjectCreateParametersValidator.cs │ │ ├── ProjectIdentityParametersValidator.cs │ │ ├── ProjectUpdateParametersValidator.cs │ │ ├── ProjectValidationErrorMessages.cs │ │ └── UpdateProjectFromGitParametersValidator.cs │ ├── ServiceCollectionExtensions.cs │ ├── Teams │ │ ├── CreateTeamModelValidator.cs │ │ ├── TeamAddMemberModelValidator.cs │ │ └── TeamValidationErrorMessages.cs │ ├── Users │ │ ├── PasswordValidator.cs │ │ ├── SignInModelValidator.cs │ │ ├── SignUpModelValidator.cs │ │ ├── UpdatePasswordModelValidator.cs │ │ ├── UpdateUserModelValidator.cs │ │ └── UserValidationErrorMessages.cs │ └── ValidationExtensions.cs ├── Hackathon.BL │ ├── ApprovalApplications │ │ ├── ApprovalApplicationMessages.cs │ │ └── ApprovalApplicationService.cs │ ├── Auth │ │ ├── AuthService.cs │ │ └── AuthTokenGenerator.cs │ ├── Email │ │ ├── EmailConfirmationErrorMessages.cs │ │ └── EmailConfirmationService.cs │ ├── Events │ │ ├── EventService.cs │ │ └── EventsErrorMessages.cs │ ├── Friendship │ │ ├── FriendshipErrorMessages.cs │ │ └── FriendshipService.cs │ ├── Hackathon.BL.csproj │ ├── Projects │ │ ├── ProjectErrorMessages.cs │ │ └── ProjectService.cs │ ├── ServiceCollectionExtensions.cs │ ├── Teams │ │ ├── PrivateTeamService.cs │ │ ├── PublicTeamService.cs │ │ ├── TeamErrorMessages.cs │ │ └── TeamService.cs │ └── Users │ │ ├── PasswordHashService.cs │ │ ├── UserErrorMessages.cs │ │ ├── UserProfileReactionService.cs │ │ └── UserService.cs ├── Hackathon.Caching │ ├── Hackathon.Caching.csproj │ └── ServiceCollectionExtensions.cs ├── Hackathon.Chats.Infrastructure │ ├── Consumers │ │ ├── Events │ │ │ ├── EventNewParticipantsConsumer.cs │ │ │ ├── EventParticipantsLeaveConsumer.cs │ │ │ └── EventStartedConsumer.cs │ │ └── Teams │ │ │ ├── NewTeamMemberConsumer.cs │ │ │ └── TeamMemberRemovedConsumer.cs │ ├── Hackathon.Chats.Infrastructure.csproj │ └── IntegrationEvents │ │ ├── ChatConnectionsProvider.cs │ │ ├── EventChatHub.cs │ │ └── TeamChatHub.cs ├── Hackathon.Chats │ ├── Hackathon.Chats.Abstractions │ │ ├── Hackathon.Chats.Abstractions.csproj │ │ ├── IntegrationEvents │ │ │ ├── ChatsTopicNames.cs │ │ │ ├── EventChatNewMessageIntegrationEvent.cs │ │ │ ├── IChatsIntegrationEventsHub.cs │ │ │ ├── IEventChatHub.cs │ │ │ ├── IEventChatIntegrationEvent.cs │ │ │ ├── ITeamChatHub.cs │ │ │ ├── ITeamChatIntegrationEvent.cs │ │ │ └── TeamChatNewMessageIntegrationEvent.cs │ │ ├── Models │ │ │ ├── BaseNewChatMessage.cs │ │ │ ├── ChatMessage.cs │ │ │ ├── ChatMessageOption.cs │ │ │ ├── ChatType.cs │ │ │ ├── Events │ │ │ │ ├── EventChatMessage.cs │ │ │ │ ├── IEventChatMessage.cs │ │ │ │ └── NewEventChatMessage.cs │ │ │ ├── IChatMessage.cs │ │ │ ├── INewChatMessage.cs │ │ │ └── Teams │ │ │ │ ├── ITeamChatMessage.cs │ │ │ │ ├── NewTeamChatMessage.cs │ │ │ │ └── TeamChatMessage.cs │ │ ├── Repositories │ │ │ ├── IChatRepository.cs │ │ │ ├── IEventChatRepository.cs │ │ │ └── ITeamChatRepository.cs │ │ └── Services │ │ │ ├── IChatConnectionsProvider.cs │ │ │ ├── IChatService.cs │ │ │ ├── IEventChatService.cs │ │ │ └── ITeamChatService.cs │ ├── Hackathon.Chats.BL │ │ ├── Hackathon.Chats.BL.csproj │ │ ├── Services │ │ │ ├── BaseChatService.cs │ │ │ ├── EventChatService.cs │ │ │ └── TeamChatService.cs │ │ └── Validators │ │ │ ├── ChatErrorMessages.cs │ │ │ ├── NewChatMessageValidator.cs │ │ │ ├── NewEventChatMessageValidator.cs │ │ │ └── NewTeamChatMessageValidator.cs │ ├── Hackathon.Chats.Clients │ │ ├── Hackathon.Chats.Clients.csproj │ │ ├── IEventChatApiClient.cs │ │ └── ITeamChatApiClient.cs │ ├── Hackathon.Chats.DAL │ │ ├── ChatsDbContext.cs │ │ ├── Configurations │ │ │ └── ChatMessageEntityConfiguration.cs │ │ ├── Entities │ │ │ └── ChatMessageEntity.cs │ │ ├── Hackathon.Chats.DAL.csproj │ │ ├── Migrations │ │ │ ├── 20231028141750_Chats_Init.Designer.cs │ │ │ ├── 20231028141750_Chats_Init.cs │ │ │ └── ChatsDbContextModelSnapshot.cs │ │ └── Repositories │ │ │ ├── ChatRepository.cs │ │ │ ├── EventChatRepository.cs │ │ │ └── TeamChatRepository.cs │ └── Hackathon.Chats.Module │ │ ├── ChatsApiModule.cs │ │ ├── ChatsMappings.cs │ │ ├── Controllers │ │ ├── EventChatController.cs │ │ └── TeamChatController.cs │ │ └── Hackathon.Chats.Module.csproj ├── Hackathon.Client │ ├── Hackathon.Client.csproj │ ├── IApprovalApplicationApiClient.cs │ ├── IAuthApi.cs │ ├── IEventApi.cs │ ├── IEventLogApi.cs │ ├── IFriendshipApi.cs │ ├── IProjectApiClient.cs │ ├── ITeamApi.cs │ └── IUserApi.cs ├── Hackathon.Common │ ├── Abstraction │ │ ├── ApprovalApplications │ │ │ └── IApprovalApplicationRepository.cs │ │ ├── Auth │ │ │ └── IAuthService.cs │ │ ├── Events │ │ │ ├── IApprovalApplicationService.cs │ │ │ ├── IEventAgreementRepository.cs │ │ │ ├── IEventRepository.cs │ │ │ └── IEventService.cs │ │ ├── Friend │ │ │ ├── IFriendshipRepository.cs │ │ │ └── IFriendshipService.cs │ │ ├── IBaseValidator.cs │ │ ├── IHasCreatedAt.cs │ │ ├── IHasModifyAt.cs │ │ ├── IntegrationEvents │ │ │ ├── IIntegrationEvent.cs │ │ │ └── IIntegrationEventsHub.cs │ │ ├── Project │ │ │ ├── IProjectRepository.cs │ │ │ └── IProjectService.cs │ │ ├── Team │ │ │ ├── IPrivateTeamService.cs │ │ │ ├── IPublicTeamService.cs │ │ │ ├── ITeamJoinRequestsRepository.cs │ │ │ ├── ITeamRepository.cs │ │ │ └── ITeamService.cs │ │ └── User │ │ │ ├── IEmailConfirmationRepository.cs │ │ │ ├── IEmailConfirmationService.cs │ │ │ ├── IPasswordHashService.cs │ │ │ ├── IUserProfileReactionRepository.cs │ │ │ ├── IUserProfileReactionService.cs │ │ │ ├── IUserRepository.cs │ │ │ └── IUserService.cs │ ├── AppClaimTypes.cs │ ├── Extensions │ │ ├── ClaimsPrincipalExtensions.cs │ │ ├── DateTimeExtensions.cs │ │ └── MapsterCollections.cs │ ├── Hackathon.Common.csproj │ ├── Messages │ │ ├── Events │ │ │ ├── EventCreatedMessage.cs │ │ │ ├── EventNewParticipantsMessage.cs │ │ │ ├── EventParticipantsLeaveMessage.cs │ │ │ └── EventStartedMessage.cs │ │ └── Teams │ │ │ ├── NewTeamMemberMessage.cs │ │ │ └── TeamMemberRemovedMessage.cs │ ├── Models │ │ ├── ApprovalApplications │ │ │ ├── ApprovalApplicationFilter.cs │ │ │ ├── ApprovalApplicationRejectParameters.cs │ │ │ ├── ApprovalApplicationStatus.cs │ │ │ └── NewApprovalApplicationParameters.cs │ │ ├── Auth │ │ │ ├── AuthorizedUser.cs │ │ │ └── GenerateTokenPayload.cs │ │ ├── AuthTokenModel.cs │ │ ├── Base │ │ │ ├── BaseCollection.cs │ │ │ ├── Pagination.cs │ │ │ └── PaginationSorting.cs │ │ ├── Event │ │ │ ├── Agreement │ │ │ │ ├── EventAgreementCreateParameters.cs │ │ │ │ └── EventAgreementUpdateParameters.cs │ │ │ ├── ApprovalApplicationModel.cs │ │ │ ├── BaseEventParameters.cs │ │ │ ├── ChangeEventStatusMessage.cs │ │ │ ├── EventAgreementModel.cs │ │ │ ├── EventCreateParameters.cs │ │ │ ├── EventFilter.cs │ │ │ ├── EventListItem.cs │ │ │ ├── EventModel.cs │ │ │ ├── EventStatus.cs │ │ │ ├── EventTaskItem.cs │ │ │ └── EventUpdateParameters.cs │ │ ├── EventStage │ │ │ └── EventStageModel.cs │ │ ├── Friend │ │ │ ├── Friendship.cs │ │ │ ├── FriendshipGetOffersFilter.cs │ │ │ ├── FriendshipStatus.cs │ │ │ └── GetOfferOption.cs │ │ ├── GetListParameters.cs │ │ ├── Projects │ │ │ ├── BaseProjectParameters.cs │ │ │ ├── IHasProjectIdentity.cs │ │ │ ├── ProjectCreationParameters.cs │ │ │ ├── ProjectFilter.cs │ │ │ ├── ProjectListItem.cs │ │ │ ├── ProjectModel.cs │ │ │ ├── ProjectUpdateParameters.cs │ │ │ ├── ProjectUploadingFromGitInfoDto.cs │ │ │ └── UpdateProjectFromGitBranchParameters.cs │ │ ├── SortOrder.cs │ │ ├── Tags │ │ │ └── TagCollection.cs │ │ ├── Teams │ │ │ ├── CancelRequestParameters.cs │ │ │ ├── CreateTeamModel.cs │ │ │ ├── DeleteTeamModel.cs │ │ │ ├── TeamEventListItem.cs │ │ │ ├── TeamFilter.cs │ │ │ ├── TeamGeneral.cs │ │ │ ├── TeamJoinRequestCreateParameters.cs │ │ │ ├── TeamJoinRequestExtendedFilter.cs │ │ │ ├── TeamJoinRequestFilter.cs │ │ │ ├── TeamJoinRequestModel.cs │ │ │ ├── TeamJoinRequestParameters.cs │ │ │ ├── TeamJoinRequestStatus.cs │ │ │ ├── TeamMember.cs │ │ │ ├── TeamMemberModel.cs │ │ │ ├── TeamModel.cs │ │ │ ├── TeamRole.cs │ │ │ └── TeamType.cs │ │ └── Users │ │ │ ├── CreateNewUserModel.cs │ │ │ ├── EmailConfirmationRequestModel.cs │ │ │ ├── EmailConfirmationRequestParameters.cs │ │ │ ├── EmailParameters.cs │ │ │ ├── GoogleAccountModel.cs │ │ │ ├── SignInGoogleModel.cs │ │ │ ├── SignInModel.cs │ │ │ ├── UpdatePasswordModel.cs │ │ │ ├── UpdateUserParameters.cs │ │ │ ├── UserEmailModel.cs │ │ │ ├── UserEmailStatus.cs │ │ │ ├── UserFilter.cs │ │ │ ├── UserModel.cs │ │ │ ├── UserProfileReaction.cs │ │ │ ├── UserProfileReactionModel.cs │ │ │ ├── UserRole.cs │ │ │ ├── UserShortModel.cs │ │ │ └── UserSignInDetails.cs │ └── RegexPatterns.cs ├── Hackathon.Configuration │ ├── AdministratorDefaults.cs │ ├── AppSettings.cs │ ├── Auth │ │ ├── AuthenticateSettings.cs │ │ ├── ExternalAuthenticateSettings.cs │ │ ├── GoogleAuthenticateSettings.cs │ │ └── InternalAuthenticateSettings.cs │ ├── DataSettings.cs │ ├── EmailConfirmationOptions.cs │ ├── EmailSettings.cs │ ├── Hackathon.Configuration.csproj │ ├── IntegrationEvents │ │ ├── HubsChatSettings.cs │ │ └── HubsSettings.cs │ ├── Jobs │ │ ├── EventStartNotifierJobSettings.cs │ │ ├── IJobSettings.cs │ │ ├── JobScheduleType.cs │ │ ├── PastEventStatusUpdateJobSettings.cs │ │ └── StartedEventStatusUpdateJobSettings.cs │ ├── OriginsOptions.cs │ └── RestrictedNames.cs ├── Hackathon.DAL │ ├── ApplicationDbContext.cs │ ├── BaseDbContext.cs │ ├── Configurations │ │ ├── ApprovalApplications │ │ │ └── ApprovalApplicationConfiguration.cs │ │ ├── EmailConfirmationRequestEntityConfiguration.cs │ │ ├── Events │ │ │ ├── EventAgreementConfiguration.cs │ │ │ ├── EventEntityConfiguration.cs │ │ │ └── EventStageConfiguration.cs │ │ ├── FriendOfferEntityConfiguration.cs │ │ ├── GoogleAccountEntityConfiguration.cs │ │ ├── Projects │ │ │ └── ProjectEntityConfiguration.cs │ │ ├── Team │ │ │ ├── MemberTeamEntityConfiguration.cs │ │ │ ├── TeamEntityConfiguration.cs │ │ │ └── TeamJoinRequestEntityConfiguration.cs │ │ └── Users │ │ │ ├── UserEntityConfiguration.cs │ │ │ └── UserReactionEntityConfiguration.cs │ ├── DbInitializer.cs │ ├── Entities │ │ ├── ApprovalApplications │ │ │ └── ApprovalApplicationEntity.cs │ │ ├── BaseEntity.cs │ │ ├── EmailConfirmationRequestEntity.cs │ │ ├── Event │ │ │ ├── EventAgreementEntity.cs │ │ │ ├── EventAgreementUserEntity.cs │ │ │ ├── EventEntity.cs │ │ │ └── EventStageEntity.cs │ │ ├── FriendshipEntity.cs │ │ ├── GoogleAccountEntity.cs │ │ ├── Interfaces │ │ │ └── ISoftDeletable.cs │ │ ├── Projects │ │ │ └── ProjectEntity.cs │ │ ├── Teams │ │ │ ├── MemberTeamEntity.cs │ │ │ ├── TeamEntity.cs │ │ │ └── TeamJoinRequestEntity.cs │ │ └── Users │ │ │ ├── UserEntity.cs │ │ │ └── UserReactionEntity.cs │ ├── Extensions │ │ ├── EfCoreExtensions.cs │ │ ├── FriendshipEntityExtensions.cs │ │ ├── MigrationExtensions.cs │ │ └── ModelBuilderExtension.cs │ ├── Hackathon.DAL.csproj │ ├── Mappings │ │ ├── EventMapping.cs │ │ ├── EventStageMappings.cs │ │ ├── TagsMappings.cs │ │ ├── TeamMapping.cs │ │ └── UserEntityMapping.cs │ ├── Migrations │ │ ├── 20220504193629_Init.Designer.cs │ │ ├── 20220504193629_Init.cs │ │ ├── 20220510082418_Event_Add_Award.Designer.cs │ │ ├── 20220510082418_Event_Add_Award.cs │ │ ├── 20220510084046_Event_Add_Description.Designer.cs │ │ ├── 20220510084046_Event_Add_Description.cs │ │ ├── 20220510090934_MemberTeam_DateTimeAdd.Designer.cs │ │ ├── 20220510090934_MemberTeam_DateTimeAdd.cs │ │ ├── 20220605105958_Friendships.Designer.cs │ │ ├── 20220605105958_Friendships.cs │ │ ├── 20220606171135_UserProjectEventTeam_Add_IsDeleted.Designer.cs │ │ ├── 20220606171135_UserProjectEventTeam_Add_IsDeleted.cs │ │ ├── 20220709121810_TeamType.Designer.cs │ │ ├── 20220709121810_TeamType.cs │ │ ├── 20220709204618_UserReactions.Designer.cs │ │ ├── 20220709204618_UserReactions.cs │ │ ├── 20220710090501_Event_Description_Award_Required_SetNullAsEmpty.Designer.cs │ │ ├── 20220710090501_Event_Description_Award_Required_SetNullAsEmpty.cs │ │ ├── 20221119154031_changeTeamType.Designer.cs │ │ ├── 20221119154031_changeTeamType.cs │ │ ├── 20221204102733_FriendshipEntity_Add_Id.Designer.cs │ │ ├── 20221204102733_FriendshipEntity_Add_Id.cs │ │ ├── 20221204103809_FriendshipEntity_Change_PK.Designer.cs │ │ ├── 20221204103809_FriendshipEntity_Change_PK.cs │ │ ├── 20221224164028_EmailConfirmation.Designer.cs │ │ ├── 20221224164028_EmailConfirmation.cs │ │ ├── 20230102124345_Event_Image.Designer.cs │ │ ├── 20230102124345_Event_Image.cs │ │ ├── 20230106084757_Project_FileIds.Designer.cs │ │ ├── 20230106084757_Project_FileIds.cs │ │ ├── 20230219112102_EventStages.Designer.cs │ │ ├── 20230219112102_EventStages.cs │ │ ├── 20230225084606_Events_Add_Rules.Designer.cs │ │ ├── 20230225084606_Events_Add_Rules.cs │ │ ├── 20230312112316_Event_Add_CurrentStageId.Designer.cs │ │ ├── 20230312112316_Event_Add_CurrentStageId.cs │ │ ├── 20230323070110_TeamJoinRequests.Designer.cs │ │ ├── 20230323070110_TeamJoinRequests.cs │ │ ├── 20230323105235_TeamJoinRequests_Add_ForeignKey_To_Team.Designer.cs │ │ ├── 20230323105235_TeamJoinRequests_Add_ForeignKey_To_Team.cs │ │ ├── 20230324125641_TeamJoinRequestEntity_AddForeignKey_UserId.Designer.cs │ │ ├── 20230324125641_TeamJoinRequestEntity_AddForeignKey_UserId.cs │ │ ├── 20230325124130_TeamJoinRequest_Add_Comment.Designer.cs │ │ ├── 20230325124130_TeamJoinRequest_Add_Comment.cs │ │ ├── 20230406150811_Event_Add_Tasks.Designer.cs │ │ ├── 20230406150811_Event_Add_Tasks.cs │ │ ├── 20230408073630_Project_RemoveProjectId.Designer.cs │ │ ├── 20230408073630_Project_RemoveProjectId.cs │ │ ├── 20230410163651_Project_Remove_IsDeleted.Designer.cs │ │ ├── 20230410163651_Project_Remove_IsDeleted.cs │ │ ├── 20230414105911_Project_Add_LinkToGitBranch.Designer.cs │ │ ├── 20230414105911_Project_Add_LinkToGitBranch.cs │ │ ├── 20230618104023_Event_Agreement.Designer.cs │ │ ├── 20230618104023_Event_Agreement.cs │ │ ├── 20230830155643_ApprovalApplications.Designer.cs │ │ ├── 20230830155643_ApprovalApplications.cs │ │ ├── 20231021105149_ApprovalApplicationsRelations_Fixed.Designer.cs │ │ ├── 20231021105149_ApprovalApplicationsRelations_Fixed.cs │ │ ├── 20231031081024_MemberTeam_Add_Role.Designer.cs │ │ ├── 20231031081024_MemberTeam_Add_Role.cs │ │ ├── 20231224204052_MembersTeams_ChangeRoleType.Designer.cs │ │ ├── 20231224204052_MembersTeams_ChangeRoleType.cs │ │ ├── 20231224205228_Events_Tags.Designer.cs │ │ ├── 20231224205228_Events_Tags.cs │ │ ├── 20240122113515_GoogleAuthChanges.Designer.cs │ │ ├── 20240122113515_GoogleAuthChanges.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Repositories │ │ ├── ApprovalApplications │ │ │ └── ApprovalApplicationRepository.cs │ │ ├── EmailConfirmationRepository.cs │ │ ├── Events │ │ │ ├── EventAgreementRepository.cs │ │ │ └── EventRepository.cs │ │ ├── FriendshipRepository.cs │ │ ├── ProjectRepository.cs │ │ ├── Team │ │ │ ├── TeamJoinRequestRepository.cs │ │ │ └── TeamRepository.cs │ │ ├── UserProfileReactionRepository.cs │ │ └── UserRepository.cs │ └── ServiceCollectionExtensions.cs ├── Hackathon.FileStorage │ ├── Hackathon.FileStorage.Abstraction │ │ ├── Hackathon.FileStorage.Abstraction.csproj │ │ ├── Models │ │ │ ├── Bucket.cs │ │ │ ├── EventFileImage.cs │ │ │ ├── FileImage.cs │ │ │ ├── IFileImage.cs │ │ │ ├── ProfileFileImage.cs │ │ │ └── StorageFile.cs │ │ ├── Repositories │ │ │ └── IFileStorageRepository.cs │ │ └── Services │ │ │ └── IFileStorageService.cs │ ├── Hackathon.FileStorage.BL │ │ ├── Extensions │ │ │ └── BucketExtensions.cs │ │ ├── Hackathon.FileStorage.BL.csproj │ │ ├── Jobs │ │ │ └── UnusedFilesDeleteJob.cs │ │ ├── MimeTypes.cs │ │ ├── Services │ │ │ ├── FileStorageService.cs │ │ │ └── ImageLoader.cs │ │ └── Validators │ │ │ ├── FileImageErrorMessages.cs │ │ │ ├── FileImageValidator.cs │ │ │ └── FileImageValidatorRuleSets.cs │ ├── Hackathon.FileStorage.Configuration │ │ ├── FileSettings.cs │ │ ├── Hackathon.FileStorage.Configuration.csproj │ │ ├── ImageSettings.cs │ │ ├── Jobs │ │ │ └── UnusedFilesDeleteJobSettings.cs │ │ └── S3Options.cs │ ├── Hackathon.FileStorage.DAL │ │ ├── Configurations │ │ │ └── FileStorageEntityConfiguration.cs │ │ ├── Entities │ │ │ └── FileStorageEntity.cs │ │ ├── FileStorageDbContext.cs │ │ ├── Hackathon.FileStorage.DAL.csproj │ │ ├── Migrations │ │ │ ├── 20231113183353_FileStorage_Init.Designer.cs │ │ │ ├── 20231113183353_FileStorage_Init.cs │ │ │ └── FileStorageDbContextModelSnapshot.cs │ │ └── Repositories │ │ │ └── FileStorageRepository.cs │ ├── Hackathon.FileStorage.Jobs │ │ └── Hackathon.FileStorage.Jobs.csproj │ └── Hackathon.FileStorage.Module │ │ ├── Controllers │ │ └── FileStorageController.cs │ │ ├── FileStorageModule.cs │ │ └── Hackathon.FileStorage.Module.csproj ├── Hackathon.Informing │ ├── Hackathon.Informing.Abstractions │ │ ├── Constants │ │ │ ├── Templates.cs │ │ │ └── Variables.cs │ │ ├── Hackathon.Informing.Abstractions.csproj │ │ ├── IntegrationEvents │ │ │ ├── IInformingIntegrationEventsHub.cs │ │ │ ├── InformingTopicNames.cs │ │ │ └── NotificationChangedIntegrationEvent.cs │ │ ├── Models │ │ │ ├── Notifications │ │ │ │ ├── CreateNotificationModel.cs │ │ │ │ ├── Data │ │ │ │ │ ├── SystemNotificationData.cs │ │ │ │ │ └── TeamJoinRequestDecisionData.cs │ │ │ │ ├── INotification.cs │ │ │ │ ├── NotificationFilterModel.cs │ │ │ │ ├── NotificationModel.cs │ │ │ │ └── NotificationType.cs │ │ │ └── Templates │ │ │ │ └── TemplateModel.cs │ │ ├── Repositories │ │ │ ├── INotificationRepository.cs │ │ │ └── ITemplateRepository.cs │ │ └── Services │ │ │ ├── IEmailService.cs │ │ │ ├── INotificationService.cs │ │ │ └── ITemplateService.cs │ ├── Hackathon.Informing.BL │ │ ├── Hackathon.Informing.BL.csproj │ │ ├── NotificationCreator.cs │ │ └── Services │ │ │ ├── EmailService.cs │ │ │ ├── NotificationService.cs │ │ │ └── TemplateService.cs │ ├── Hackathon.Informing.DAL │ │ ├── Configurations │ │ │ ├── NotificationEntityConfiguration.cs │ │ │ └── TemplateEntityConfiguration.cs │ │ ├── Entities │ │ │ ├── NotificationEntity.cs │ │ │ └── TemplateEntity.cs │ │ ├── Hackathon.Informing.DAL.csproj │ │ ├── InformingDbContext.cs │ │ ├── Migrations │ │ │ ├── 20231102192339_Informing_Init.Designer.cs │ │ │ ├── 20231102192339_Informing_Init.cs │ │ │ ├── 20231103075423_Informing_Templates.Designer.cs │ │ │ ├── 20231103075423_Informing_Templates.cs │ │ │ ├── 20231103075510_Informing_Templates_Fill.Designer.cs │ │ │ ├── 20231103075510_Informing_Templates_Fill.cs │ │ │ ├── 20240206064845_Informing_Update_EmailConfirmationRequestTemplate.Designer.cs │ │ │ ├── 20240206064845_Informing_Update_EmailConfirmationRequestTemplate.cs │ │ │ ├── InformingDbContextModelSnapshot.cs │ │ │ └── Scripts │ │ │ │ ├── 20231103075510_Informing_Templates_Fill.sql │ │ │ │ ├── 20240206064845_Informing_Update_EmailConfirmationRequestTemplate.sql │ │ │ │ └── 20240206064845_Informing_Update_EmailConfirmationRequestTemplate__rollback.sql │ │ └── Repositories │ │ │ ├── NotificationRepository.cs │ │ │ └── TemplateRepository.cs │ └── Hackathon.Informing.Module │ │ ├── Controllers │ │ └── NotificationController.cs │ │ ├── Hackathon.Informing.Module.csproj │ │ ├── InformingApiModule.cs │ │ ├── InformingIntegrationEventsHub.cs │ │ └── NotificationMapping.cs ├── Hackathon.Infrastructure │ ├── Hackathon.Infrastructure.csproj │ ├── IMessageBusService.cs │ ├── MessageBusService.cs │ └── ServiceCollectionExtensions.cs ├── Hackathon.IntegrationEvents │ ├── Hackathon.IntegrationEvents.csproj │ ├── Hubs │ │ ├── EventChangesIntegrationEventsHub.cs │ │ └── IEventChangesIntegrationEventsHub.cs │ ├── IntegrationEvents │ │ ├── EventStageChangedIntegrationEvent.cs │ │ ├── EventStatusChangedIntegrationEvent.cs │ │ └── FriendshipChangedIntegrationEvent.cs │ ├── IntegrationEventsHub.cs │ ├── IntegrationEventsUserIdProvider.cs │ ├── ServiceCollectionExtensions.cs │ └── Topics │ │ ├── EventsTopicNames.cs │ │ └── TopicNames.cs ├── Hackathon.IntegrationServices.Github │ ├── Abstraction │ │ ├── GitParameters.cs │ │ ├── IGitHubIntegrationService.cs │ │ └── IGitIntegrationService.cs │ ├── Hackathon.IntegrationServices.Github.csproj │ └── Services │ │ ├── GitHubIntegrationService.cs │ │ └── GitIntegrationService.cs ├── Hackathon.IntegrationServices │ ├── Hackathon.IntegrationServices.csproj │ └── ServiceCollectionExtensions.cs ├── Hackathon.Jobs │ ├── BaseJob.cs │ ├── Events │ │ ├── EventStartNotifierJob.cs │ │ ├── PastEventStatusUpdateJob.cs │ │ └── StartedEventStatusUpdateJob.cs │ ├── Hackathon.Jobs.csproj │ └── IBackgroundJob.cs ├── Hackathon.Logbook │ ├── Hackathon.Logbook.Abstraction │ │ ├── Hackathon.Logbook.Abstraction.csproj │ │ ├── Handlers │ │ │ └── IEventLogHandler.cs │ │ ├── Models │ │ │ ├── EventLogListItem.cs │ │ │ ├── EventLogModel.cs │ │ │ └── EventLogType.cs │ │ ├── Repositories │ │ │ └── IEventLogRepository.cs │ │ └── Services │ │ │ └── IEventLogService.cs │ ├── Hackathon.Logbook.BL │ │ ├── Consumers │ │ │ ├── EventCreatedMessageConsumer.cs │ │ │ └── EventLogConsumer.cs │ │ ├── Hackathon.Logbook.BL.csproj │ │ ├── Handlers │ │ │ └── EventLogHandler.cs │ │ └── Services │ │ │ └── EventLogService.cs │ ├── Hackathon.Logbook.DAL │ │ ├── Configurations │ │ │ └── EventLogEntityConfiguration.cs │ │ ├── Entities │ │ │ └── EventLogEntity.cs │ │ ├── EventLogMappings.cs │ │ ├── Hackathon.Logbook.DAL.csproj │ │ ├── LogbookDbContext.cs │ │ ├── Migrations │ │ │ ├── 20231217085123_Logbook_Init.Designer.cs │ │ │ ├── 20231217085123_Logbook_Init.cs │ │ │ └── LogbookDbContextModelSnapshot.cs │ │ └── Repositories │ │ │ └── EventLogRepository.cs │ └── Hackathon.Logbook.Module │ │ ├── EventLogController.cs │ │ ├── Hackathon.Logbook.Module.csproj │ │ └── LogbookApiModule.cs └── Hackathon.UI │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── .husky │ └── pre-commit │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── clients │ │ │ ├── approval-applications.client.ts │ │ │ ├── base.client.ts │ │ │ ├── event-chats.client.ts │ │ │ ├── events.client.ts │ │ │ ├── file-storage.client.ts │ │ │ ├── friendship.client.ts │ │ │ ├── logbook.client.ts │ │ │ ├── notifications.client.ts │ │ │ ├── projects.client.ts │ │ │ ├── team-chats.client.ts │ │ │ ├── teams.client.ts │ │ │ ├── user-profile-reactions.client.ts │ │ │ └── users.client.ts │ │ ├── common │ │ │ ├── base-components │ │ │ │ ├── base-table-list.component.ts │ │ │ │ ├── dictionaries-loading.component.ts │ │ │ │ └── with-form-base.component.ts │ │ │ ├── consts │ │ │ │ └── date-formats.ts │ │ │ ├── emuns │ │ │ │ └── actions.enum.ts │ │ │ ├── error-messages │ │ │ │ ├── application-approval-error-messages.ts │ │ │ │ ├── event-error-messages.ts │ │ │ │ └── upload-file-error-messages.ts │ │ │ ├── functions │ │ │ │ ├── check-value.ts │ │ │ │ ├── custom-error-state-matcher.ts │ │ │ │ └── from-mobx.function.ts │ │ │ ├── handlers │ │ │ │ └── error.handler.ts │ │ │ ├── interceptors │ │ │ │ └── auth.interceptor.ts │ │ │ ├── interfaces │ │ │ │ ├── file-utils.ts │ │ │ │ ├── key-value.interface.ts │ │ │ │ ├── menu-item.ts │ │ │ │ ├── pagination.ts │ │ │ │ └── theme-mode.interface.ts │ │ │ └── patterns │ │ │ │ └── email-regex.ts │ │ ├── components │ │ │ ├── approval-application │ │ │ │ ├── approval-application-filter │ │ │ │ │ ├── approval-application-filter.component.html │ │ │ │ │ ├── approval-application-filter.component.scss │ │ │ │ │ └── approval-application-filter.component.ts │ │ │ │ ├── approval-application-info-modal │ │ │ │ │ ├── approval-application-info-modal.component.html │ │ │ │ │ ├── approval-application-info-modal.component.scss │ │ │ │ │ └── approval-application-info-modal.component.ts │ │ │ │ ├── approval-application-reject-modal │ │ │ │ │ ├── approval-application-reject-modal.component.html │ │ │ │ │ ├── approval-application-reject-modal.component.scss │ │ │ │ │ └── approval-application-reject-modal.component.ts │ │ │ │ ├── approval-application-status │ │ │ │ │ ├── approval-application-status.component.html │ │ │ │ │ ├── approval-application-status.component.scss │ │ │ │ │ └── approval-application-status.component.ts │ │ │ │ └── list │ │ │ │ │ ├── approval-application-list.component.html │ │ │ │ │ ├── approval-application-list.component.scss │ │ │ │ │ └── approval-application-list.component.ts │ │ │ ├── chat │ │ │ │ ├── base.chat.component.html │ │ │ │ ├── base.chat.component.scss │ │ │ │ ├── base.chat.component.ts │ │ │ │ ├── event │ │ │ │ │ └── chat-event.component.ts │ │ │ │ └── team │ │ │ │ │ └── chat-team.component.ts │ │ │ ├── custom │ │ │ │ ├── alert │ │ │ │ │ ├── alert.component.html │ │ │ │ │ ├── alert.component.scss │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── custom-dialog │ │ │ │ │ ├── custom-dialog.component.html │ │ │ │ │ ├── custom-dialog.component.scss │ │ │ │ │ └── custom-dialog.component.ts │ │ │ │ ├── image-from-storage │ │ │ │ │ ├── image-from-storage.component.html │ │ │ │ │ ├── image-from-storage.component.scss │ │ │ │ │ └── image-from-storage.component.ts │ │ │ │ ├── list-details │ │ │ │ │ ├── list-details.component.html │ │ │ │ │ ├── list-details.component.scss │ │ │ │ │ └── list-details.component.ts │ │ │ │ ├── project-dialog │ │ │ │ │ ├── project-dialog.component.html │ │ │ │ │ └── project-dialog.component.ts │ │ │ │ └── project-git-dialog │ │ │ │ │ ├── project-git-dialog.component.html │ │ │ │ │ └── project-git-dialog.component.ts │ │ │ ├── event │ │ │ │ ├── cards │ │ │ │ │ ├── components │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── event-button-actions.component.html │ │ │ │ │ │ │ ├── event-button-actions.component.scss │ │ │ │ │ │ │ └── event-button-actions.component.ts │ │ │ │ │ │ ├── event-card-base.component.ts │ │ │ │ │ │ ├── event-header │ │ │ │ │ │ │ ├── event-header.component.html │ │ │ │ │ │ │ ├── event-header.component.scss │ │ │ │ │ │ │ └── event-header.component.ts │ │ │ │ │ │ ├── event-stage-dialog │ │ │ │ │ │ │ ├── event-stage-dialog.component.html │ │ │ │ │ │ │ ├── event-stage-dialog.component.scss │ │ │ │ │ │ │ └── event-stage-dialog.component.ts │ │ │ │ │ │ ├── event-status │ │ │ │ │ │ │ ├── event-status.component.html │ │ │ │ │ │ │ ├── event-status.component.scss │ │ │ │ │ │ │ └── event-status.component.ts │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── event-new-status-dialog.component.html │ │ │ │ │ │ │ ├── event-new-status-dialog.component.scss │ │ │ │ │ │ │ └── event-new-status-dialog.component.ts │ │ │ │ │ ├── event-card-factory.component.ts │ │ │ │ │ ├── event-card-finished │ │ │ │ │ │ ├── event-card-finished.component.html │ │ │ │ │ │ ├── event-card-finished.component.scss │ │ │ │ │ │ └── event-card-finished.component.ts │ │ │ │ │ ├── event-card-published │ │ │ │ │ │ ├── event-card-published.component.html │ │ │ │ │ │ ├── event-card-published.component.scss │ │ │ │ │ │ └── event-card-published.component.ts │ │ │ │ │ ├── event-card-started │ │ │ │ │ │ ├── event-card-started.component.html │ │ │ │ │ │ ├── event-card-started.component.scss │ │ │ │ │ │ └── event-card-started.component.ts │ │ │ │ │ ├── event-create-edit-card │ │ │ │ │ │ ├── event-create-edit-card.component.html │ │ │ │ │ │ ├── event-create-edit-card.component.scss │ │ │ │ │ │ └── event-create-edit-card.component.ts │ │ │ │ │ └── event-main-view-card │ │ │ │ │ │ ├── event-main-view-card.component.html │ │ │ │ │ │ ├── event-main-view-card.component.scss │ │ │ │ │ │ └── event-main-view-card.component.ts │ │ │ │ ├── event.directive.ts │ │ │ │ └── list │ │ │ │ │ ├── event.list.component.html │ │ │ │ │ ├── event.list.component.scss │ │ │ │ │ └── event.list.component.ts │ │ │ ├── eventlog │ │ │ │ ├── eventLog.list.component.html │ │ │ │ ├── eventLog.list.component.scss │ │ │ │ └── eventLog.list.component.ts │ │ │ ├── friendship │ │ │ │ ├── friendship-offer-button │ │ │ │ │ ├── friendship-offer-button.component.html │ │ │ │ │ └── friendship-offer-button.component.ts │ │ │ │ └── list │ │ │ │ │ ├── friends-list.component.html │ │ │ │ │ ├── friends-list.component.scss │ │ │ │ │ └── friends-list.component.ts │ │ │ ├── layouts │ │ │ │ └── default │ │ │ │ │ ├── default.layout.component.html │ │ │ │ │ ├── default.layout.component.scss │ │ │ │ │ └── default.layout.component.ts │ │ │ ├── line-info │ │ │ │ ├── line-info.component.html │ │ │ │ ├── line-info.component.scss │ │ │ │ └── line-info.component.ts │ │ │ ├── login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ └── login.component.ts │ │ │ ├── nav-menu │ │ │ │ ├── nav-menu.component.html │ │ │ │ ├── nav-menu.component.scss │ │ │ │ └── nav-menu.component.ts │ │ │ ├── not-found │ │ │ │ ├── not-found.component.html │ │ │ │ ├── not-found.component.scss │ │ │ │ └── not-found.component.ts │ │ │ ├── notification │ │ │ │ ├── bell │ │ │ │ │ ├── notification.bell.component.html │ │ │ │ │ ├── notification.bell.component.scss │ │ │ │ │ └── notification.bell.component.ts │ │ │ │ ├── item │ │ │ │ │ ├── notification-item.component.html │ │ │ │ │ ├── notification-item.component.scss │ │ │ │ │ └── notification-item.component.ts │ │ │ │ ├── list │ │ │ │ │ ├── notification.list.component.html │ │ │ │ │ ├── notification.list.component.scss │ │ │ │ │ └── notification.list.component.ts │ │ │ │ └── templates │ │ │ │ │ ├── info │ │ │ │ │ ├── notification.info.view.component.html │ │ │ │ │ ├── notification.info.view.component.scss │ │ │ │ │ └── notification.info.view.component.ts │ │ │ │ │ └── teams │ │ │ │ │ └── teamJoinRequestDecision │ │ │ │ │ ├── notification.teamJoinRequestDecision.view.component.html │ │ │ │ │ ├── notification.teamJoinRequestDecision.view.component.scss │ │ │ │ │ └── notification.teamJoinRequestDecision.view.component.ts │ │ │ ├── profile │ │ │ │ ├── image │ │ │ │ │ ├── profile-image.component.html │ │ │ │ │ ├── profile-image.component.scss │ │ │ │ │ └── profile-image.component.ts │ │ │ │ ├── password-change-dialog │ │ │ │ │ ├── password-change-dialog.component.html │ │ │ │ │ └── password-change-dialog.component.ts │ │ │ │ └── view │ │ │ │ │ ├── profile.view.component.html │ │ │ │ │ ├── profile.view.component.scss │ │ │ │ │ └── profile.view.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.html │ │ │ │ ├── register.component.scss │ │ │ │ └── register.component.ts │ │ │ ├── team │ │ │ │ ├── cancelJoinRequestCommentDialog │ │ │ │ │ ├── cancelJoinRequestCommentDialog.component.html │ │ │ │ │ └── cancelJoinRequestCommentDialog.component.ts │ │ │ │ ├── list │ │ │ │ │ ├── team.list.component.html │ │ │ │ │ ├── team.list.component.scss │ │ │ │ │ └── team.list.component.ts │ │ │ │ ├── new │ │ │ │ │ ├── team.new.component.html │ │ │ │ │ ├── team.new.component.scss │ │ │ │ │ └── team.new.component.ts │ │ │ │ ├── team │ │ │ │ │ ├── team.component.html │ │ │ │ │ ├── team.component.scss │ │ │ │ │ └── team.component.ts │ │ │ │ ├── userTeam │ │ │ │ │ ├── userTeam.component.html │ │ │ │ │ ├── userTeam.component.scss │ │ │ │ │ └── userTeam.component.ts │ │ │ │ └── view │ │ │ │ │ ├── team.view.component.html │ │ │ │ │ ├── team.view.component.scss │ │ │ │ │ └── team.view.component.ts │ │ │ ├── toolbar │ │ │ │ ├── toolbar.component.html │ │ │ │ ├── toolbar.component.scss │ │ │ │ └── toolbar.component.ts │ │ │ └── user │ │ │ │ └── list │ │ │ │ ├── user.list.component.html │ │ │ │ ├── user.list.component.scss │ │ │ │ └── user.list.component.ts │ │ ├── models │ │ │ ├── BaseCollection.ts │ │ │ ├── Event │ │ │ │ ├── ChangeEventStatusMessage.ts │ │ │ │ ├── Event.ts │ │ │ │ ├── EventFilter.ts │ │ │ │ ├── EventStage.ts │ │ │ │ ├── EventStatus.ts │ │ │ │ ├── ICreateEvent.ts │ │ │ │ ├── IEventAgreement.ts │ │ │ │ ├── IEventListItem.ts │ │ │ │ ├── IEventStage.ts │ │ │ │ ├── IEventTaskItem.ts │ │ │ │ ├── IUpdateEvent.ts │ │ │ │ ├── chat-context.enum.ts │ │ │ │ └── pages.enum.ts │ │ │ ├── EventLog │ │ │ │ └── IEventLogModel.ts │ │ │ ├── FileStorage │ │ │ │ ├── Buckets.ts │ │ │ │ └── IStorageFile.ts │ │ │ ├── Friendship │ │ │ │ ├── FriendshipFilter.ts │ │ │ │ └── FriendshipStatus.ts │ │ │ ├── GetListParameters.ts │ │ │ ├── IBaseCreateResponse.ts │ │ │ ├── IGetTokenResponse.ts │ │ │ ├── IProblemDetails.ts │ │ │ ├── IntegrationEvent │ │ │ │ ├── IEventStageChangedIntegrationEvent.ts │ │ │ │ ├── IFriendshipChangedIntegrationEvent.ts │ │ │ │ └── INotificationChangedIntegrationEvent.ts │ │ │ ├── Notification │ │ │ │ ├── Notification.ts │ │ │ │ ├── NotificationFilter.ts │ │ │ │ ├── NotificationType.ts │ │ │ │ └── data │ │ │ │ │ ├── ISystemNotificationData.ts │ │ │ │ │ └── ITeamJoinRequestDecisionData.ts │ │ │ ├── PageSettings.ts │ │ │ ├── Project │ │ │ │ ├── IProject.ts │ │ │ │ ├── IProjectUpdateFromGitBranch.ts │ │ │ │ └── project-dialog.interface.ts │ │ │ ├── Team │ │ │ │ ├── CancelRequestParameters.ts │ │ │ │ ├── CreateTeamModel.ts │ │ │ │ ├── ITeamJoinRequest.ts │ │ │ │ ├── ITeamJoinRequestFilter.ts │ │ │ │ ├── Team.ts │ │ │ │ ├── TeamFilter.ts │ │ │ │ └── TeamType..ts │ │ │ ├── User │ │ │ │ ├── CreateUser.ts │ │ │ │ ├── GoogleUser.ts │ │ │ │ ├── IUpdatePasswordParameters.ts │ │ │ │ ├── IUser.ts │ │ │ │ ├── IUserEmail.ts │ │ │ │ ├── User.ts │ │ │ │ ├── UserEmailStatus.ts │ │ │ │ ├── UserFilter.ts │ │ │ │ ├── UserProfileReaction.ts │ │ │ │ └── UserRole.ts │ │ │ ├── approval-application │ │ │ │ ├── approval-application-status.enum.ts │ │ │ │ ├── approval-application-translator.ts │ │ │ │ └── approval-application.interface.ts │ │ │ ├── chat │ │ │ │ ├── BaseChatMessage.ts │ │ │ │ ├── EventChatMessage.ts │ │ │ │ ├── TeamChatMessage.ts │ │ │ │ └── integrationEvents │ │ │ │ │ ├── IEventChatNewMessageIntegrationEvent.ts │ │ │ │ │ └── ITeamChatNewMessageIntegrationEvent.ts │ │ │ ├── environment.interface.ts │ │ │ └── error-codes.enum.ts │ │ ├── services │ │ │ ├── app-state.service.ts │ │ │ ├── auth.constants.ts │ │ │ ├── auth.service.ts │ │ │ ├── error-processor.service.ts │ │ │ ├── event │ │ │ │ └── event.service.ts │ │ │ ├── file-upload.service.ts │ │ │ ├── google-sign-in.service.ts │ │ │ ├── guards │ │ │ │ └── auth.guard.ts │ │ │ ├── profile-page-for-logged-users-guard.service.ts │ │ │ ├── router.service.ts │ │ │ ├── signalr.service.ts │ │ │ ├── snack.service.ts │ │ │ └── theme-change.service.ts │ │ └── shared │ │ │ └── stores │ │ │ ├── current-user.store.ts │ │ │ └── profile-user.store.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── fonts │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── TitilliumWeb-Bold.ttf │ │ │ ├── TitilliumWeb-Regular.ttf │ │ │ └── material-Icons.woff2 │ │ ├── img │ │ │ ├── award.svg │ │ │ ├── back-dark.png │ │ │ ├── back.png │ │ │ ├── event-img │ │ │ │ ├── event-0.svg │ │ │ │ ├── event-1.svg │ │ │ │ ├── event-2.svg │ │ │ │ ├── event-3.svg │ │ │ │ ├── event-4.svg │ │ │ │ ├── event-5.svg │ │ │ │ ├── event-6.svg │ │ │ │ ├── event-7.svg │ │ │ │ ├── event-8.svg │ │ │ │ └── event-default.svg │ │ │ ├── google.svg │ │ │ └── pic_user.png │ │ ├── sounds │ │ │ └── recieve_notify.mp3 │ │ └── styles │ │ │ ├── common.scss │ │ │ ├── fonts.scss │ │ │ ├── mat-custom.scss │ │ │ ├── material-fonts.scss │ │ │ ├── mixins.scss │ │ │ ├── scrollbar.scss │ │ │ ├── spaces.scss │ │ │ ├── theme.scss │ │ │ └── variables.scss │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── tests ├── Hackathon.BL.Tests ├── ApprovalApplication │ └── ApprovalApplicationTests.cs ├── BaseUnitTest.cs ├── Email │ └── TemplateServiceTests.cs ├── Event │ └── EventServiceTests.cs ├── Hackathon.BL.Tests.csproj ├── IntegrationServices │ └── GitHubIntegrationServiceTests.cs ├── Project │ └── ProjectServiceTests.cs ├── Team │ └── TeamServiceTests.cs └── User │ └── UserServiceTests.cs ├── Hackathon.BL.Validation.Tests ├── Common │ └── GetFilterModelValidatorTests.cs ├── Events │ └── BaseEventParametersValidatorTests.cs ├── Hackathon.BL.Validation.Tests.csproj └── User │ └── SignUpModelValidatorTests.cs ├── Hackathon.DAL.Tests ├── Hackathon.DAL.Tests.csproj └── MappingTests.cs └── Hackathon.Tests.Integration ├── ApiTestsCollection.cs ├── Auth └── AuthControllerTests.cs ├── BaseIntegrationTest.cs ├── Chats ├── EventChatApiTests.cs └── TeamChatApiTests.cs ├── EmailServiceTests.cs ├── Events └── EventsIntegrationTests.cs ├── Friendship └── FriendshipControllerTests.cs ├── Hackathon.Tests.Integration.csproj ├── MessageBus └── MessageBusTests.cs ├── Projects └── ProjectControllerTests.cs ├── Teams └── TeamApiTests.cs ├── TestFaker.cs ├── TestWebApplicationFactory.cs └── Users ├── UserControllerTests.cs └── UserProfileReactionControllerTests.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/deploy-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/.github/workflows/deploy-api.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/.github/workflows/deploy-ui.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/Dockerfile -------------------------------------------------------------------------------- /Hackathon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/Hackathon.sln -------------------------------------------------------------------------------- /PrintPackageVersions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/PrintPackageVersions.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/grafana/provisioning/dashboards/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/docker/grafana/provisioning/dashboards/all.yml -------------------------------------------------------------------------------- /docker/grafana/provisioning/dashboards/hackathon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/docker/grafana/provisioning/dashboards/hackathon.json -------------------------------------------------------------------------------- /docker/grafana/provisioning/datasources/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/docker/grafana/provisioning/datasources/all.yml -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/BaseCreateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/BaseCreateResponse.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Events/CreateEventRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Events/CreateEventRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Events/SetStatusRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Events/SetStatusRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Events/UpdateEventRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Events/UpdateEventRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Hackathon.API.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Hackathon.API.Contracts.csproj -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Projects/ProjectCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Projects/ProjectCreateRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Projects/UpdateProjectFromGitBranchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Projects/UpdateProjectFromGitBranchRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Teams/CreateTeamRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Teams/CreateTeamRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Users/SignInRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Users/SignInRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Users/SignUpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Users/SignUpRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Users/UpdateUserRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Users/UpdateUserRequest.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Users/UserEmailResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Users/UserEmailResponse.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Contracts/Users/UserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Contracts/Users/UserResponse.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Module/ApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Module/ApiModule.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Module/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Module/BaseController.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Module/Extensions/OperationResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Module/Extensions/OperationResultExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.API.Module/Hackathon.API.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Module/Hackathon.API.Module.csproj -------------------------------------------------------------------------------- /src/Hackathon.API.Module/IApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API.Module/IApiModule.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/Events/EventController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/Events/EventController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/FriendshipController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/FriendshipController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/ProjectController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/ProjectController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/Teams/PrivateTeamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/Teams/PrivateTeamController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/Teams/PublicTeamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/Teams/PublicTeamController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/Teams/TeamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/Teams/TeamController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/UserController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Controllers/UserProfileReactionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Controllers/UserProfileReactionController.cs -------------------------------------------------------------------------------- /src/Hackathon.API/ExceptionActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/ExceptionActionFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Extensions/AddAuthenticationExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Extensions/AddAuthenticationExtension.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Extensions/AddSwaggerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Extensions/AddSwaggerExtension.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Extensions/JobsServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Extensions/JobsServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Hackathon.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Hackathon.API.csproj -------------------------------------------------------------------------------- /src/Hackathon.API/MigrationsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/MigrationsTool.cs -------------------------------------------------------------------------------- /src/Hackathon.API/OriginHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/OriginHelper.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Program.cs -------------------------------------------------------------------------------- /src/Hackathon.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Hackathon.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/Startup.cs -------------------------------------------------------------------------------- /src/Hackathon.API/appsettings.Stage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/appsettings.Stage.json -------------------------------------------------------------------------------- /src/Hackathon.API/appsettings.Tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/appsettings.Tests.json -------------------------------------------------------------------------------- /src/Hackathon.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.API/appsettings.json -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Common/GetListParametersValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Common/GetListParametersValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Events/BaseEventParametersValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Events/BaseEventParametersValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Events/ChangeEventStatusValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Events/ChangeEventStatusValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Events/CreateEventModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Events/CreateEventModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Events/EventsValidationMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Events/EventsValidationMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Events/UpdateEventModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Events/UpdateEventModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Hackathon.BL.Validation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Hackathon.BL.Validation.csproj -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Projects/BaseProjectParametersValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Projects/BaseProjectParametersValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Projects/LinkToGitBranchValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Projects/LinkToGitBranchValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Projects/ProjectCreateParametersValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Projects/ProjectCreateParametersValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Projects/ProjectIdentityParametersValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Projects/ProjectIdentityParametersValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Projects/ProjectUpdateParametersValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Projects/ProjectUpdateParametersValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Projects/ProjectValidationErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Projects/ProjectValidationErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Projects/UpdateProjectFromGitParametersValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Projects/UpdateProjectFromGitParametersValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Teams/CreateTeamModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Teams/CreateTeamModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Teams/TeamAddMemberModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Teams/TeamAddMemberModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Teams/TeamValidationErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Teams/TeamValidationErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Users/PasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Users/PasswordValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Users/SignInModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Users/SignInModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Users/SignUpModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Users/SignUpModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Users/UpdatePasswordModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Users/UpdatePasswordModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Users/UpdateUserModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Users/UpdateUserModelValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/Users/UserValidationErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/Users/UserValidationErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL.Validation/ValidationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL.Validation/ValidationExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/ApprovalApplications/ApprovalApplicationMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/ApprovalApplications/ApprovalApplicationMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/ApprovalApplications/ApprovalApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/ApprovalApplications/ApprovalApplicationService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Auth/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Auth/AuthService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Auth/AuthTokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Auth/AuthTokenGenerator.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Email/EmailConfirmationErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Email/EmailConfirmationErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Email/EmailConfirmationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Email/EmailConfirmationService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Events/EventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Events/EventService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Events/EventsErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Events/EventsErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Friendship/FriendshipErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Friendship/FriendshipErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Friendship/FriendshipService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Friendship/FriendshipService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Hackathon.BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Hackathon.BL.csproj -------------------------------------------------------------------------------- /src/Hackathon.BL/Projects/ProjectErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Projects/ProjectErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Projects/ProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Projects/ProjectService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Teams/PrivateTeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Teams/PrivateTeamService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Teams/PublicTeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Teams/PublicTeamService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Teams/TeamErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Teams/TeamErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Teams/TeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Teams/TeamService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Users/PasswordHashService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Users/PasswordHashService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Users/UserErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Users/UserErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Users/UserProfileReactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Users/UserProfileReactionService.cs -------------------------------------------------------------------------------- /src/Hackathon.BL/Users/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.BL/Users/UserService.cs -------------------------------------------------------------------------------- /src/Hackathon.Caching/Hackathon.Caching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Caching/Hackathon.Caching.csproj -------------------------------------------------------------------------------- /src/Hackathon.Caching/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Caching/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/Consumers/Events/EventNewParticipantsConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/Consumers/Events/EventNewParticipantsConsumer.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/Consumers/Events/EventStartedConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/Consumers/Events/EventStartedConsumer.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/Consumers/Teams/NewTeamMemberConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/Consumers/Teams/NewTeamMemberConsumer.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/Consumers/Teams/TeamMemberRemovedConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/Consumers/Teams/TeamMemberRemovedConsumer.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/Hackathon.Chats.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/Hackathon.Chats.Infrastructure.csproj -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/IntegrationEvents/ChatConnectionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/IntegrationEvents/ChatConnectionsProvider.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/IntegrationEvents/EventChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/IntegrationEvents/EventChatHub.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats.Infrastructure/IntegrationEvents/TeamChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats.Infrastructure/IntegrationEvents/TeamChatHub.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/IntegrationEvents/IEventChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/IntegrationEvents/IEventChatHub.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/IntegrationEvents/ITeamChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/IntegrationEvents/ITeamChatHub.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/BaseNewChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/BaseNewChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/ChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/ChatMessageOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/ChatMessageOption.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/ChatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/ChatType.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Events/EventChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Events/EventChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Events/IEventChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Events/IEventChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/IChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/IChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/INewChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/INewChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Teams/ITeamChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Teams/ITeamChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Teams/NewTeamChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Teams/NewTeamChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Teams/TeamChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Models/Teams/TeamChatMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Repositories/IChatRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Repositories/IChatRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Services/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Services/IChatService.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Services/IEventChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Services/IEventChatService.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Abstractions/Services/ITeamChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Abstractions/Services/ITeamChatService.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Hackathon.Chats.BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Hackathon.Chats.BL.csproj -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Services/BaseChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Services/BaseChatService.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Services/EventChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Services/EventChatService.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Services/TeamChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Services/TeamChatService.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Validators/ChatErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Validators/ChatErrorMessages.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Validators/NewChatMessageValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Validators/NewChatMessageValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Validators/NewEventChatMessageValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Validators/NewEventChatMessageValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.BL/Validators/NewTeamChatMessageValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.BL/Validators/NewTeamChatMessageValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Clients/Hackathon.Chats.Clients.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Clients/Hackathon.Chats.Clients.csproj -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Clients/IEventChatApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Clients/IEventChatApiClient.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Clients/ITeamChatApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Clients/ITeamChatApiClient.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/ChatsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/ChatsDbContext.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/Entities/ChatMessageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/Entities/ChatMessageEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/Hackathon.Chats.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/Hackathon.Chats.DAL.csproj -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/Migrations/20231028141750_Chats_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/Migrations/20231028141750_Chats_Init.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/Migrations/ChatsDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/Migrations/ChatsDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/Repositories/ChatRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/Repositories/ChatRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/Repositories/EventChatRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/Repositories/EventChatRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.DAL/Repositories/TeamChatRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.DAL/Repositories/TeamChatRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Module/ChatsApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Module/ChatsApiModule.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Module/ChatsMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Module/ChatsMappings.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Module/Controllers/EventChatController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Module/Controllers/EventChatController.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Module/Controllers/TeamChatController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Module/Controllers/TeamChatController.cs -------------------------------------------------------------------------------- /src/Hackathon.Chats/Hackathon.Chats.Module/Hackathon.Chats.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Chats/Hackathon.Chats.Module/Hackathon.Chats.Module.csproj -------------------------------------------------------------------------------- /src/Hackathon.Client/Hackathon.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/Hackathon.Client.csproj -------------------------------------------------------------------------------- /src/Hackathon.Client/IApprovalApplicationApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/IApprovalApplicationApiClient.cs -------------------------------------------------------------------------------- /src/Hackathon.Client/IAuthApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/IAuthApi.cs -------------------------------------------------------------------------------- /src/Hackathon.Client/IEventApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/IEventApi.cs -------------------------------------------------------------------------------- /src/Hackathon.Client/IEventLogApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/IEventLogApi.cs -------------------------------------------------------------------------------- /src/Hackathon.Client/IFriendshipApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/IFriendshipApi.cs -------------------------------------------------------------------------------- /src/Hackathon.Client/IProjectApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/IProjectApiClient.cs -------------------------------------------------------------------------------- /src/Hackathon.Client/ITeamApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/ITeamApi.cs -------------------------------------------------------------------------------- /src/Hackathon.Client/IUserApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Client/IUserApi.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Auth/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Auth/IAuthService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Events/IApprovalApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Events/IApprovalApplicationService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Events/IEventAgreementRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Events/IEventAgreementRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Events/IEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Events/IEventRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Events/IEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Events/IEventService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Friend/IFriendshipRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Friend/IFriendshipRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Friend/IFriendshipService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Friend/IFriendshipService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/IBaseValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/IBaseValidator.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/IHasCreatedAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/IHasCreatedAt.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/IHasModifyAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/IHasModifyAt.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/IntegrationEvents/IIntegrationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/IntegrationEvents/IIntegrationEvent.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/IntegrationEvents/IIntegrationEventsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/IntegrationEvents/IIntegrationEventsHub.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Project/IProjectRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Project/IProjectRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Project/IProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Project/IProjectService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Team/IPrivateTeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Team/IPrivateTeamService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Team/IPublicTeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Team/IPublicTeamService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Team/ITeamJoinRequestsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Team/ITeamJoinRequestsRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Team/ITeamRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Team/ITeamRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/Team/ITeamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/Team/ITeamService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/User/IEmailConfirmationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/User/IEmailConfirmationRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/User/IEmailConfirmationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/User/IEmailConfirmationService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/User/IPasswordHashService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/User/IPasswordHashService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/User/IUserProfileReactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/User/IUserProfileReactionRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/User/IUserProfileReactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/User/IUserProfileReactionService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/User/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/User/IUserRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Abstraction/User/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Abstraction/User/IUserService.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/AppClaimTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/AppClaimTypes.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Extensions/MapsterCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Extensions/MapsterCollections.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Hackathon.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Hackathon.Common.csproj -------------------------------------------------------------------------------- /src/Hackathon.Common/Messages/Events/EventCreatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Messages/Events/EventCreatedMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Messages/Events/EventNewParticipantsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Messages/Events/EventNewParticipantsMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Messages/Events/EventParticipantsLeaveMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Messages/Events/EventParticipantsLeaveMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Messages/Events/EventStartedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Messages/Events/EventStartedMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Messages/Teams/NewTeamMemberMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Messages/Teams/NewTeamMemberMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Messages/Teams/TeamMemberRemovedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Messages/Teams/TeamMemberRemovedMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/ApprovalApplications/ApprovalApplicationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/ApprovalApplications/ApprovalApplicationFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/ApprovalApplications/ApprovalApplicationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/ApprovalApplications/ApprovalApplicationStatus.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Auth/AuthorizedUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Auth/AuthorizedUser.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Auth/GenerateTokenPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Auth/GenerateTokenPayload.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/AuthTokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/AuthTokenModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Base/BaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Base/BaseCollection.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Base/Pagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Base/Pagination.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Base/PaginationSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Base/PaginationSorting.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/Agreement/EventAgreementCreateParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/Agreement/EventAgreementCreateParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/Agreement/EventAgreementUpdateParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/Agreement/EventAgreementUpdateParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/ApprovalApplicationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/ApprovalApplicationModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/BaseEventParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/BaseEventParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/ChangeEventStatusMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/ChangeEventStatusMessage.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventAgreementModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventAgreementModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventCreateParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventCreateParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventListItem.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventStatus.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventTaskItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventTaskItem.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Event/EventUpdateParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Event/EventUpdateParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/EventStage/EventStageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/EventStage/EventStageModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Friend/Friendship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Friend/Friendship.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Friend/FriendshipGetOffersFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Friend/FriendshipGetOffersFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Friend/FriendshipStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Friend/FriendshipStatus.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Friend/GetOfferOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Friend/GetOfferOption.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/GetListParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/GetListParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/BaseProjectParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/BaseProjectParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/IHasProjectIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/IHasProjectIdentity.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/ProjectCreationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/ProjectCreationParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/ProjectFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/ProjectFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/ProjectListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/ProjectListItem.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/ProjectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/ProjectModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/ProjectUpdateParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/ProjectUpdateParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/ProjectUploadingFromGitInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/ProjectUploadingFromGitInfoDto.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Projects/UpdateProjectFromGitBranchParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Projects/UpdateProjectFromGitBranchParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/SortOrder.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Tags/TagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Tags/TagCollection.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/CancelRequestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/CancelRequestParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/CreateTeamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/CreateTeamModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/DeleteTeamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/DeleteTeamModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamEventListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamEventListItem.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamGeneral.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamJoinRequestCreateParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamJoinRequestCreateParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamJoinRequestExtendedFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamJoinRequestExtendedFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamJoinRequestFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamJoinRequestFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamJoinRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamJoinRequestModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamJoinRequestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamJoinRequestParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamJoinRequestStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamJoinRequestStatus.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamMember.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamMemberModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamMemberModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamRole.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Teams/TeamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Teams/TeamType.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/CreateNewUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/CreateNewUserModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/EmailConfirmationRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/EmailConfirmationRequestModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/EmailConfirmationRequestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/EmailConfirmationRequestParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/EmailParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/EmailParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/GoogleAccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/GoogleAccountModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/SignInGoogleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/SignInGoogleModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/SignInModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/SignInModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UpdatePasswordModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UpdatePasswordModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UpdateUserParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UpdateUserParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserEmailModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserEmailModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserEmailStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserEmailStatus.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserFilter.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserProfileReaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserProfileReaction.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserProfileReactionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserProfileReactionModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserRole.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserShortModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserShortModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/Models/Users/UserSignInDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/Models/Users/UserSignInDetails.cs -------------------------------------------------------------------------------- /src/Hackathon.Common/RegexPatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Common/RegexPatterns.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/AdministratorDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/AdministratorDefaults.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/AppSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Auth/AuthenticateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Auth/AuthenticateSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Auth/ExternalAuthenticateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Auth/ExternalAuthenticateSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Auth/GoogleAuthenticateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Auth/GoogleAuthenticateSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Auth/InternalAuthenticateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Auth/InternalAuthenticateSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/DataSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/DataSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/EmailConfirmationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/EmailConfirmationOptions.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/EmailSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/EmailSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Hackathon.Configuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Hackathon.Configuration.csproj -------------------------------------------------------------------------------- /src/Hackathon.Configuration/IntegrationEvents/HubsChatSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/IntegrationEvents/HubsChatSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/IntegrationEvents/HubsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/IntegrationEvents/HubsSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Jobs/EventStartNotifierJobSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Jobs/EventStartNotifierJobSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Jobs/IJobSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Jobs/IJobSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Jobs/JobScheduleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Jobs/JobScheduleType.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Jobs/PastEventStatusUpdateJobSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Jobs/PastEventStatusUpdateJobSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/Jobs/StartedEventStatusUpdateJobSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/Jobs/StartedEventStatusUpdateJobSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/OriginsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/OriginsOptions.cs -------------------------------------------------------------------------------- /src/Hackathon.Configuration/RestrictedNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Configuration/RestrictedNames.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/BaseDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/BaseDbContext.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/EmailConfirmationRequestEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/EmailConfirmationRequestEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Events/EventAgreementConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Events/EventAgreementConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Events/EventEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Events/EventEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Events/EventStageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Events/EventStageConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/FriendOfferEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/FriendOfferEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/GoogleAccountEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/GoogleAccountEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Projects/ProjectEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Projects/ProjectEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Team/MemberTeamEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Team/MemberTeamEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Team/TeamEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Team/TeamEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Team/TeamJoinRequestEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Team/TeamJoinRequestEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Users/UserEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Users/UserEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Configurations/Users/UserReactionEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Configurations/Users/UserReactionEntityConfiguration.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/DbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/DbInitializer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/ApprovalApplications/ApprovalApplicationEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/ApprovalApplications/ApprovalApplicationEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/EmailConfirmationRequestEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/EmailConfirmationRequestEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Event/EventAgreementEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Event/EventAgreementEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Event/EventAgreementUserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Event/EventAgreementUserEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Event/EventEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Event/EventEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Event/EventStageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Event/EventStageEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/FriendshipEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/FriendshipEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/GoogleAccountEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/GoogleAccountEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Interfaces/ISoftDeletable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Interfaces/ISoftDeletable.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Projects/ProjectEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Projects/ProjectEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Teams/MemberTeamEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Teams/MemberTeamEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Teams/TeamEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Teams/TeamEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Teams/TeamJoinRequestEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Teams/TeamJoinRequestEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Users/UserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Users/UserEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Entities/Users/UserReactionEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Entities/Users/UserReactionEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Extensions/EfCoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Extensions/EfCoreExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Extensions/FriendshipEntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Extensions/FriendshipEntityExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Extensions/MigrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Extensions/MigrationExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Extensions/ModelBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Extensions/ModelBuilderExtension.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Hackathon.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Hackathon.DAL.csproj -------------------------------------------------------------------------------- /src/Hackathon.DAL/Mappings/EventMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Mappings/EventMapping.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Mappings/EventStageMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Mappings/EventStageMappings.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Mappings/TagsMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Mappings/TagsMappings.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Mappings/TeamMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Mappings/TeamMapping.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Mappings/UserEntityMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Mappings/UserEntityMapping.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220504193629_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220504193629_Init.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220504193629_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220504193629_Init.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220510082418_Event_Add_Award.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220510082418_Event_Add_Award.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220510082418_Event_Add_Award.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220510082418_Event_Add_Award.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220510084046_Event_Add_Description.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220510084046_Event_Add_Description.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220510084046_Event_Add_Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220510084046_Event_Add_Description.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220510090934_MemberTeam_DateTimeAdd.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220510090934_MemberTeam_DateTimeAdd.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220510090934_MemberTeam_DateTimeAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220510090934_MemberTeam_DateTimeAdd.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220605105958_Friendships.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220605105958_Friendships.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220605105958_Friendships.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220605105958_Friendships.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220606171135_UserProjectEventTeam_Add_IsDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220606171135_UserProjectEventTeam_Add_IsDeleted.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220709121810_TeamType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220709121810_TeamType.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220709121810_TeamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220709121810_TeamType.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220709204618_UserReactions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220709204618_UserReactions.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20220709204618_UserReactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20220709204618_UserReactions.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20221119154031_changeTeamType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20221119154031_changeTeamType.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20221119154031_changeTeamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20221119154031_changeTeamType.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20221204102733_FriendshipEntity_Add_Id.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20221204102733_FriendshipEntity_Add_Id.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20221204102733_FriendshipEntity_Add_Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20221204102733_FriendshipEntity_Add_Id.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20221204103809_FriendshipEntity_Change_PK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20221204103809_FriendshipEntity_Change_PK.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20221224164028_EmailConfirmation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20221224164028_EmailConfirmation.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20221224164028_EmailConfirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20221224164028_EmailConfirmation.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230102124345_Event_Image.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230102124345_Event_Image.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230102124345_Event_Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230102124345_Event_Image.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230106084757_Project_FileIds.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230106084757_Project_FileIds.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230106084757_Project_FileIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230106084757_Project_FileIds.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230219112102_EventStages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230219112102_EventStages.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230219112102_EventStages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230219112102_EventStages.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230225084606_Events_Add_Rules.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230225084606_Events_Add_Rules.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230225084606_Events_Add_Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230225084606_Events_Add_Rules.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230312112316_Event_Add_CurrentStageId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230312112316_Event_Add_CurrentStageId.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230312112316_Event_Add_CurrentStageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230312112316_Event_Add_CurrentStageId.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230323070110_TeamJoinRequests.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230323070110_TeamJoinRequests.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230323070110_TeamJoinRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230323070110_TeamJoinRequests.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230325124130_TeamJoinRequest_Add_Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230325124130_TeamJoinRequest_Add_Comment.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230406150811_Event_Add_Tasks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230406150811_Event_Add_Tasks.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230406150811_Event_Add_Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230406150811_Event_Add_Tasks.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230408073630_Project_RemoveProjectId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230408073630_Project_RemoveProjectId.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230408073630_Project_RemoveProjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230408073630_Project_RemoveProjectId.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230410163651_Project_Remove_IsDeleted.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230410163651_Project_Remove_IsDeleted.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230410163651_Project_Remove_IsDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230410163651_Project_Remove_IsDeleted.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230414105911_Project_Add_LinkToGitBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230414105911_Project_Add_LinkToGitBranch.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230618104023_Event_Agreement.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230618104023_Event_Agreement.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230618104023_Event_Agreement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230618104023_Event_Agreement.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230830155643_ApprovalApplications.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230830155643_ApprovalApplications.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20230830155643_ApprovalApplications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20230830155643_ApprovalApplications.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20231031081024_MemberTeam_Add_Role.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20231031081024_MemberTeam_Add_Role.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20231031081024_MemberTeam_Add_Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20231031081024_MemberTeam_Add_Role.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20231224204052_MembersTeams_ChangeRoleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20231224204052_MembersTeams_ChangeRoleType.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20231224205228_Events_Tags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20231224205228_Events_Tags.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20231224205228_Events_Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20231224205228_Events_Tags.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20240122113515_GoogleAuthChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20240122113515_GoogleAuthChanges.Designer.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/20240122113515_GoogleAuthChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/20240122113515_GoogleAuthChanges.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/EmailConfirmationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/EmailConfirmationRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/Events/EventAgreementRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/Events/EventAgreementRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/Events/EventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/Events/EventRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/FriendshipRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/FriendshipRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/ProjectRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/ProjectRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/Team/TeamJoinRequestRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/Team/TeamJoinRequestRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/Team/TeamRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/Team/TeamRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/UserProfileReactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/UserProfileReactionRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.DAL/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.DAL/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.Abstraction/Models/Bucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.Abstraction/Models/Bucket.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.Abstraction/Models/FileImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.Abstraction/Models/FileImage.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.Abstraction/Models/IFileImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.Abstraction/Models/IFileImage.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.BL/Jobs/UnusedFilesDeleteJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.BL/Jobs/UnusedFilesDeleteJob.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.BL/MimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.BL/MimeTypes.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.BL/Services/ImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.BL/Services/ImageLoader.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.Configuration/FileSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.Configuration/FileSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.Configuration/ImageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.Configuration/ImageSettings.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.Configuration/S3Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.Configuration/S3Options.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.DAL/FileStorageDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.DAL/FileStorageDbContext.cs -------------------------------------------------------------------------------- /src/Hackathon.FileStorage/Hackathon.FileStorage.Module/FileStorageModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.FileStorage/Hackathon.FileStorage.Module/FileStorageModule.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.Abstractions/Constants/Templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.Abstractions/Constants/Templates.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.Abstractions/Constants/Variables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.Abstractions/Constants/Variables.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.BL/Hackathon.Informing.BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.BL/Hackathon.Informing.BL.csproj -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.BL/NotificationCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.BL/NotificationCreator.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.BL/Services/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.BL/Services/EmailService.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.BL/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.BL/Services/NotificationService.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.BL/Services/TemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.BL/Services/TemplateService.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.DAL/Entities/NotificationEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.DAL/Entities/NotificationEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.DAL/Entities/TemplateEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.DAL/Entities/TemplateEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.DAL/Hackathon.Informing.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.DAL/Hackathon.Informing.DAL.csproj -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.DAL/InformingDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.DAL/InformingDbContext.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.Module/InformingApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.Module/InformingApiModule.cs -------------------------------------------------------------------------------- /src/Hackathon.Informing/Hackathon.Informing.Module/NotificationMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Informing/Hackathon.Informing.Module/NotificationMapping.cs -------------------------------------------------------------------------------- /src/Hackathon.Infrastructure/Hackathon.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Infrastructure/Hackathon.Infrastructure.csproj -------------------------------------------------------------------------------- /src/Hackathon.Infrastructure/IMessageBusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Infrastructure/IMessageBusService.cs -------------------------------------------------------------------------------- /src/Hackathon.Infrastructure/MessageBusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Infrastructure/MessageBusService.cs -------------------------------------------------------------------------------- /src/Hackathon.Infrastructure/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Infrastructure/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/Hackathon.IntegrationEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/Hackathon.IntegrationEvents.csproj -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/Hubs/EventChangesIntegrationEventsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/Hubs/EventChangesIntegrationEventsHub.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/Hubs/IEventChangesIntegrationEventsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/Hubs/IEventChangesIntegrationEventsHub.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/IntegrationEventsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/IntegrationEventsHub.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/IntegrationEventsUserIdProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/IntegrationEventsUserIdProvider.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/Topics/EventsTopicNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/Topics/EventsTopicNames.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationEvents/Topics/TopicNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationEvents/Topics/TopicNames.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationServices.Github/Abstraction/GitParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationServices.Github/Abstraction/GitParameters.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationServices.Github/Abstraction/IGitIntegrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationServices.Github/Abstraction/IGitIntegrationService.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationServices.Github/Services/GitHubIntegrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationServices.Github/Services/GitHubIntegrationService.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationServices.Github/Services/GitIntegrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationServices.Github/Services/GitIntegrationService.cs -------------------------------------------------------------------------------- /src/Hackathon.IntegrationServices/Hackathon.IntegrationServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationServices/Hackathon.IntegrationServices.csproj -------------------------------------------------------------------------------- /src/Hackathon.IntegrationServices/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.IntegrationServices/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Hackathon.Jobs/BaseJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Jobs/BaseJob.cs -------------------------------------------------------------------------------- /src/Hackathon.Jobs/Events/EventStartNotifierJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Jobs/Events/EventStartNotifierJob.cs -------------------------------------------------------------------------------- /src/Hackathon.Jobs/Events/PastEventStatusUpdateJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Jobs/Events/PastEventStatusUpdateJob.cs -------------------------------------------------------------------------------- /src/Hackathon.Jobs/Events/StartedEventStatusUpdateJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Jobs/Events/StartedEventStatusUpdateJob.cs -------------------------------------------------------------------------------- /src/Hackathon.Jobs/Hackathon.Jobs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Jobs/Hackathon.Jobs.csproj -------------------------------------------------------------------------------- /src/Hackathon.Jobs/IBackgroundJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Jobs/IBackgroundJob.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Handlers/IEventLogHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Handlers/IEventLogHandler.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Models/EventLogListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Models/EventLogListItem.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Models/EventLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Models/EventLogModel.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Models/EventLogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Models/EventLogType.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Services/IEventLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Abstraction/Services/IEventLogService.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.BL/Consumers/EventLogConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.BL/Consumers/EventLogConsumer.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.BL/Hackathon.Logbook.BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.BL/Hackathon.Logbook.BL.csproj -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.BL/Handlers/EventLogHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.BL/Handlers/EventLogHandler.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.BL/Services/EventLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.BL/Services/EventLogService.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.DAL/Entities/EventLogEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.DAL/Entities/EventLogEntity.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.DAL/EventLogMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.DAL/EventLogMappings.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.DAL/Hackathon.Logbook.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.DAL/Hackathon.Logbook.DAL.csproj -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.DAL/LogbookDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.DAL/LogbookDbContext.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.DAL/Repositories/EventLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.DAL/Repositories/EventLogRepository.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Module/EventLogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Module/EventLogController.cs -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Module/Hackathon.Logbook.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Module/Hackathon.Logbook.Module.csproj -------------------------------------------------------------------------------- /src/Hackathon.Logbook/Hackathon.Logbook.Module/LogbookApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.Logbook/Hackathon.Logbook.Module/LogbookApiModule.cs -------------------------------------------------------------------------------- /src/Hackathon.UI/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/.browserslistrc -------------------------------------------------------------------------------- /src/Hackathon.UI/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/.editorconfig -------------------------------------------------------------------------------- /src/Hackathon.UI/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/.eslintrc.json -------------------------------------------------------------------------------- /src/Hackathon.UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/.gitignore -------------------------------------------------------------------------------- /src/Hackathon.UI/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run lint 5 | -------------------------------------------------------------------------------- /src/Hackathon.UI/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/.prettierignore -------------------------------------------------------------------------------- /src/Hackathon.UI/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/.prettierrc -------------------------------------------------------------------------------- /src/Hackathon.UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/README.md -------------------------------------------------------------------------------- /src/Hackathon.UI/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/angular.json -------------------------------------------------------------------------------- /src/Hackathon.UI/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/karma.conf.js -------------------------------------------------------------------------------- /src/Hackathon.UI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/package-lock.json -------------------------------------------------------------------------------- /src/Hackathon.UI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/package.json -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/app.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/app.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/app.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/app.module.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/approval-applications.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/approval-applications.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/base.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/base.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/event-chats.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/event-chats.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/events.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/events.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/file-storage.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/file-storage.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/friendship.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/friendship.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/logbook.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/logbook.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/notifications.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/notifications.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/projects.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/projects.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/team-chats.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/team-chats.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/teams.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/teams.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/user-profile-reactions.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/user-profile-reactions.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/clients/users.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/clients/users.client.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/base-components/base-table-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/base-components/base-table-list.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/base-components/with-form-base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/base-components/with-form-base.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/consts/date-formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/consts/date-formats.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/emuns/actions.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/emuns/actions.enum.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/error-messages/event-error-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/error-messages/event-error-messages.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/error-messages/upload-file-error-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/error-messages/upload-file-error-messages.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/functions/check-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/functions/check-value.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/functions/custom-error-state-matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/functions/custom-error-state-matcher.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/functions/from-mobx.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/functions/from-mobx.function.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/handlers/error.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/handlers/error.handler.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/interceptors/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/interceptors/auth.interceptor.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/interfaces/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/interfaces/file-utils.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/interfaces/key-value.interface.ts: -------------------------------------------------------------------------------- 1 | export interface IKeyValue { 2 | [key: string]: any; 3 | } 4 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/interfaces/menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/interfaces/menu-item.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/interfaces/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/interfaces/pagination.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/interfaces/theme-mode.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/interfaces/theme-mode.interface.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/common/patterns/email-regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/common/patterns/email-regex.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/approval-application/approval-application-info-modal/approval-application-info-modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/approval-application/approval-application-reject-modal/approval-application-reject-modal.component.scss: -------------------------------------------------------------------------------- 1 | .sub-title { 2 | margin-bottom: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/chat/base.chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/chat/base.chat.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/chat/base.chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/chat/base.chat.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/chat/base.chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/chat/base.chat.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/chat/event/chat-event.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/chat/event/chat-event.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/chat/team/chat-team.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/chat/team/chat-team.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/custom/alert/alert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/custom/alert/alert.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/custom/alert/alert.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/custom/alert/alert.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/custom/alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/custom/alert/alert.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/cards/components/actions/event-button-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/cards/components/event-stage-dialog/event-stage-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/cards/components/status/event-new-status-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/cards/event-card-factory.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/event/cards/event-card-factory.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/event.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/event/event.directive.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/list/event.list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/event/list/event.list.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/list/event.list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/event/list/event.list.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/event/list/event.list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/event/list/event.list.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/eventlog/eventLog.list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/eventlog/eventLog.list.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/eventlog/eventLog.list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/eventlog/eventLog.list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/eventlog/eventLog.list.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/friendship/list/friends-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/friendship/list/friends-list.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/friendship/list/friends-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/friendship/list/friends-list.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/friendship/list/friends-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/friendship/list/friends-list.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/layouts/default/default.layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/layouts/default/default.layout.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/line-info/line-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/line-info/line-info.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/line-info/line-info.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/line-info/line-info.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/line-info/line-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/line-info/line-info.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/login/login.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/nav-menu/nav-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/nav-menu/nav-menu.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/not-found/not-found.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/not-found/not-found.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/not-found/not-found.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/not-found/not-found.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/notification/templates/info/notification.info.view.component.scss: -------------------------------------------------------------------------------- 1 | .notify__info-message { 2 | overflow-wrap: break-word; 3 | } 4 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/profile/image/profile-image.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/profile/image/profile-image.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/profile/image/profile-image.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/profile/image/profile-image.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/profile/image/profile-image.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/profile/image/profile-image.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/profile/view/profile.view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/profile/view/profile.view.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/profile/view/profile.view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/profile/view/profile.view.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/profile/view/profile.view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/profile/view/profile.view.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/register/register.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/register/register.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/register/register.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/register/register.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/list/team.list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/list/team.list.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/list/team.list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/list/team.list.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/list/team.list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/list/team.list.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/new/team.new.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/new/team.new.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/new/team.new.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/new/team.new.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/new/team.new.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/team/team.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/team/team.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/team/team.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/team/team.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/team/team.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/team/team.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/userTeam/userTeam.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/userTeam/userTeam.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/userTeam/userTeam.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/userTeam/userTeam.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/userTeam/userTeam.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/userTeam/userTeam.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/view/team.view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/view/team.view.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/view/team.view.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/team/view/team.view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/team/view/team.view.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/toolbar/toolbar.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/toolbar/toolbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/toolbar/toolbar.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/toolbar/toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/toolbar/toolbar.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/user/list/user.list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/user/list/user.list.component.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/user/list/user.list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/user/list/user.list.component.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/components/user/list/user.list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/components/user/list/user.list.component.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/BaseCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/BaseCollection.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/ChangeEventStatusMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/ChangeEventStatusMessage.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/Event.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/EventFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/EventFilter.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/EventStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/EventStage.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/EventStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/EventStatus.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/ICreateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/ICreateEvent.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/IEventAgreement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/IEventAgreement.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/IEventListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/IEventListItem.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/IEventStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/IEventStage.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/IEventTaskItem.ts: -------------------------------------------------------------------------------- 1 | export interface IEventTaskItem { 2 | title: string; 3 | order: number; 4 | } 5 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/IUpdateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/IUpdateEvent.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/chat-context.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/chat-context.enum.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Event/pages.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Event/pages.enum.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/EventLog/IEventLogModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/EventLog/IEventLogModel.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/FileStorage/Buckets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/FileStorage/Buckets.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/FileStorage/IStorageFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/FileStorage/IStorageFile.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Friendship/FriendshipFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Friendship/FriendshipFilter.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Friendship/FriendshipStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Friendship/FriendshipStatus.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/GetListParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/GetListParameters.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/IBaseCreateResponse.ts: -------------------------------------------------------------------------------- 1 | export interface IBaseCreateResponse { 2 | id: number; 3 | } 4 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/IGetTokenResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/IGetTokenResponse.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/IProblemDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/IProblemDetails.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/IntegrationEvent/IFriendshipChangedIntegrationEvent.ts: -------------------------------------------------------------------------------- 1 | export class FriendshipChangedIntegrationEvent { 2 | userIds: number[] = []; 3 | } 4 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Notification/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Notification/Notification.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Notification/NotificationFilter.ts: -------------------------------------------------------------------------------- 1 | export class NotificationFilter { 2 | isRead?: boolean; 3 | } 4 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Notification/NotificationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Notification/NotificationType.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Notification/data/ISystemNotificationData.ts: -------------------------------------------------------------------------------- 1 | export interface ISystemNotificationData { 2 | Message: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/PageSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/PageSettings.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Project/IProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Project/IProject.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Project/IProjectUpdateFromGitBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Project/IProjectUpdateFromGitBranch.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Project/project-dialog.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Project/project-dialog.interface.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Team/CancelRequestParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Team/CancelRequestParameters.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Team/CreateTeamModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Team/CreateTeamModel.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Team/ITeamJoinRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Team/ITeamJoinRequest.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Team/ITeamJoinRequestFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Team/ITeamJoinRequestFilter.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Team/Team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Team/Team.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Team/TeamFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/Team/TeamFilter.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/Team/TeamType..ts: -------------------------------------------------------------------------------- 1 | export interface TeamType { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/CreateUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/CreateUser.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/GoogleUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/GoogleUser.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/IUpdatePasswordParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/IUpdatePasswordParameters.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/IUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/IUser.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/IUserEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/IUserEmail.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/User.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/UserEmailStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/UserEmailStatus.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/UserFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/UserFilter.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/UserProfileReaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/UserProfileReaction.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/User/UserRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/User/UserRole.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/chat/BaseChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/chat/BaseChatMessage.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/chat/EventChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/chat/EventChatMessage.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/chat/TeamChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/chat/TeamChatMessage.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/environment.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/environment.interface.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/models/error-codes.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/models/error-codes.enum.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/app-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/app-state.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/auth.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/auth.constants.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/error-processor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/error-processor.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/event/event.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/event/event.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/file-upload.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/file-upload.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/google-sign-in.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/google-sign-in.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/guards/auth.guard.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/profile-page-for-logged-users-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/profile-page-for-logged-users-guard.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/router.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/router.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/signalr.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/signalr.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/snack.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/snack.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/services/theme-change.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/services/theme-change.service.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/shared/stores/current-user.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/shared/stores/current-user.store.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/app/shared/stores/profile-user.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/app/shared/stores/profile-user.store.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/fonts/material-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/fonts/material-Icons.woff2 -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/award.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/back-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/back-dark.png -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/back.png -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-0.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-1.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-2.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-3.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-4.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-5.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-6.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-7.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-8.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/event-img/event-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/event-img/event-default.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/google.svg -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/img/pic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/img/pic_user.png -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/sounds/recieve_notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/sounds/recieve_notify.mp3 -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/common.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/fonts.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/mat-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/mat-custom.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/material-fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/material-fonts.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/scrollbar.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/spaces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/spaces.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/theme.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/assets/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/assets/styles/variables.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/environments/environment.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/favicon.ico -------------------------------------------------------------------------------- /src/Hackathon.UI/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/index.html -------------------------------------------------------------------------------- /src/Hackathon.UI/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/main.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/polyfills.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/styles.scss -------------------------------------------------------------------------------- /src/Hackathon.UI/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/src/test.ts -------------------------------------------------------------------------------- /src/Hackathon.UI/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/tsconfig.app.json -------------------------------------------------------------------------------- /src/Hackathon.UI/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/tsconfig.json -------------------------------------------------------------------------------- /src/Hackathon.UI/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/src/Hackathon.UI/tsconfig.spec.json -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/ApprovalApplication/ApprovalApplicationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/ApprovalApplication/ApprovalApplicationTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/BaseUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/BaseUnitTest.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/Email/TemplateServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/Email/TemplateServiceTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/Event/EventServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/Event/EventServiceTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/Hackathon.BL.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/Hackathon.BL.Tests.csproj -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/IntegrationServices/GitHubIntegrationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/IntegrationServices/GitHubIntegrationServiceTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/Project/ProjectServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/Project/ProjectServiceTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/Team/TeamServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/Team/TeamServiceTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Tests/User/UserServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Tests/User/UserServiceTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Validation.Tests/Common/GetFilterModelValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Validation.Tests/Common/GetFilterModelValidatorTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Validation.Tests/Events/BaseEventParametersValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Validation.Tests/Events/BaseEventParametersValidatorTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.BL.Validation.Tests/Hackathon.BL.Validation.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Validation.Tests/Hackathon.BL.Validation.Tests.csproj -------------------------------------------------------------------------------- /tests/Hackathon.BL.Validation.Tests/User/SignUpModelValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.BL.Validation.Tests/User/SignUpModelValidatorTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.DAL.Tests/Hackathon.DAL.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.DAL.Tests/Hackathon.DAL.Tests.csproj -------------------------------------------------------------------------------- /tests/Hackathon.DAL.Tests/MappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.DAL.Tests/MappingTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/ApiTestsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/ApiTestsCollection.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Auth/AuthControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Auth/AuthControllerTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/BaseIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/BaseIntegrationTest.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Chats/EventChatApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Chats/EventChatApiTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Chats/TeamChatApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Chats/TeamChatApiTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/EmailServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/EmailServiceTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Events/EventsIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Events/EventsIntegrationTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Friendship/FriendshipControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Friendship/FriendshipControllerTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Hackathon.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Hackathon.Tests.Integration.csproj -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/MessageBus/MessageBusTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/MessageBus/MessageBusTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Projects/ProjectControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Projects/ProjectControllerTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Teams/TeamApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Teams/TeamApiTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/TestFaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/TestFaker.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/TestWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/TestWebApplicationFactory.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Users/UserControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Users/UserControllerTests.cs -------------------------------------------------------------------------------- /tests/Hackathon.Tests.Integration/Users/UserProfileReactionControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder1coder/Hackathon/HEAD/tests/Hackathon.Tests.Integration/Users/UserProfileReactionControllerTests.cs --------------------------------------------------------------------------------