├── .azure ├── ci.yml ├── cslearn-migration.yml └── migration-ci.yml ├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .github ├── copilot-instructions.md ├── prompts │ ├── resx.prompt.md │ └── scaffold.prompt.md └── workflows │ ├── cd-develop.yml │ ├── cd-production.yml │ ├── cd-template.yml │ ├── ci.yml │ └── dotnet-test.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── mcp.json ├── settings.json └── tasks.json ├── .vsconfig ├── Bit.ResxTranslator.json ├── Clean.bat ├── Clean.sh ├── CrystaLearn.TestOnly.sln ├── CrystaLearn.Web.slnf ├── CrystaLearn.sln ├── CrystaLearn.slnx ├── Dockerfile ├── README.md ├── docs ├── README.md ├── architecture │ ├── sync-document-overview.md │ ├── sync-overview.md │ ├── sync-social-activity-overview.md │ └── sync-task-overview.md ├── gitdocs │ └── badgedoc │ │ └── badge-code │ │ ├── info_en.md │ │ ├── info_fa.md │ │ └── spec.json ├── roadmap │ ├── cs-system-v0.2.md │ ├── cs-system-v0.3.md │ └── cs-system-v0.4.md ├── standards │ ├── contribution.md │ └── working-on-issues.md └── technical │ ├── architecture.md │ ├── cs-system-api.md │ ├── models.md │ └── setup-dev-environment.md ├── global.json ├── settings.VisualStudio.json └── src ├── Client ├── CrystaLearn.Client.Core │ ├── ClientCoreSettings.cs │ ├── ComponentMetadata.cs │ ├── Components │ │ ├── AppClientCoordinator.cs │ │ ├── AppComponentBase.cs │ │ ├── AppDataAnnotationsValidator.cs │ │ ├── AppErrorBoundary.razor │ │ ├── AppErrorBoundary.razor.cs │ │ ├── AppErrorBoundary.razor.scss │ │ ├── AppRouteDataPublisher.cs │ │ ├── AuthenticatingModal.razor │ │ ├── AuthenticatingModal.razor.cs │ │ ├── AuthenticatingModal.razor.scss │ │ ├── Common │ │ │ ├── AppPageData.razor │ │ │ ├── AppPageData.razor.cs │ │ │ ├── LoadingComponent.razor │ │ │ ├── LoadingComponent.razor.cs │ │ │ ├── ProductImage.razor │ │ │ ├── ProductImage.razor.cs │ │ │ ├── Prompt.razor │ │ │ ├── Prompt.razor.cs │ │ │ ├── Prompt.razor.scss │ │ │ └── RedirectToSignIn.cs │ │ ├── CsLearnIcon.razor │ │ ├── CsLearnIcon.razor.cs │ │ ├── CsLearnIcon.razor.scss │ │ ├── CsLearnIconName.cs │ │ ├── DocumentComponent.razor │ │ ├── DocumentComponent.razor.cs │ │ ├── DocumentComponent.razor.scss │ │ ├── Layout │ │ │ ├── AppAiChatPanel.razor │ │ │ ├── AppAiChatPanel.razor.cs │ │ │ ├── AppAiChatPanel.razor.scss │ │ │ ├── AppJsBridge.razor │ │ │ ├── AppJsBridge.razor.cs │ │ │ ├── AppShell.razor │ │ │ ├── AppShell.razor.cs │ │ │ ├── AppShell.razor.scss │ │ │ ├── AppSnackBar.razor │ │ │ ├── AppSnackBar.razor.cs │ │ │ ├── AppSnackBar.razor.scss │ │ │ ├── Diagnostic │ │ │ │ ├── AppDiagnosticModal.razor │ │ │ │ ├── AppDiagnosticModal.razor.Utils.cs │ │ │ │ ├── AppDiagnosticModal.razor.cs │ │ │ │ ├── AppDiagnosticModal.razor.scss │ │ │ │ ├── DiagnosticLogModal.razor │ │ │ │ └── DiagnosticLogModal.razor.cs │ │ │ ├── Footer │ │ │ │ ├── CrystaFooter.razor │ │ │ │ ├── CrystaFooter.razor.cs │ │ │ │ └── CrystaFooter.razor.scss │ │ │ ├── ForceUpdateSnackBar.razor │ │ │ ├── ForceUpdateSnackBar.razor.cs │ │ │ ├── Header │ │ │ │ ├── AppMenu.razor │ │ │ │ ├── AppMenu.razor.cs │ │ │ │ ├── AppMenu.razor.scss │ │ │ │ ├── CrystaHeader.razor │ │ │ │ ├── CrystaHeader.razor.cs │ │ │ │ ├── CrystaHeader.razor.scss │ │ │ │ ├── DiagnosticSpacer.razor │ │ │ │ ├── DiagnosticSpacer.razor.cs │ │ │ │ ├── IdentityHeader.razor │ │ │ │ ├── IdentityHeader.razor.cs │ │ │ │ ├── IdentityHeader.razor.scss │ │ │ │ ├── SignOutConfirmDialog.razor │ │ │ │ ├── SignOutConfirmDialog.razor.cs │ │ │ │ └── SignOutConfirmDialog.razor.scss │ │ │ ├── MainLayout.razor │ │ │ ├── MainLayout.razor.cs │ │ │ ├── MainLayout.razor.items.cs │ │ │ ├── MainLayout.razor.scss │ │ │ ├── Nav │ │ │ │ ├── CrystaNav.razor │ │ │ │ ├── CrystaNav.razor.cs │ │ │ │ └── CrystaNav.razor.scss │ │ │ ├── NavBar.razor │ │ │ ├── NavBar.razor.cs │ │ │ ├── NavBar.razor.scss │ │ │ └── _Imports.razor │ │ ├── Pages │ │ │ ├── AppPageBase.cs │ │ │ ├── Authorize.razor │ │ │ ├── Authorize.razor.cs │ │ │ ├── Crysta │ │ │ │ └── Program │ │ │ │ │ └── Document │ │ │ │ │ ├── DocumentPage.razor │ │ │ │ │ └── DocumentPage.razor.cs │ │ │ ├── Dashboard │ │ │ │ ├── DashboardPage.razor │ │ │ │ ├── DashboardPage.razor.cs │ │ │ │ ├── DashboardPage.razor.scss │ │ │ │ ├── OverallStatusCard.razor │ │ │ │ ├── OverallStatusCard.razor.cs │ │ │ │ └── OverallStatusCard.razor.scss │ │ │ ├── Home │ │ │ │ ├── HomePage.razor │ │ │ │ ├── HomePage.razor.cs │ │ │ │ └── HomePage.razor.scss │ │ │ ├── Identity │ │ │ │ ├── Components │ │ │ │ │ ├── AppleIcon.razor │ │ │ │ │ ├── AzureEntraIcon.razor │ │ │ │ │ ├── FacebookIcon.razor │ │ │ │ │ ├── GitHubIcon.razor │ │ │ │ │ ├── GoogleIcon.razor │ │ │ │ │ ├── IdentityServerDemoIcon.razor │ │ │ │ │ ├── SocialButton.razor │ │ │ │ │ ├── SocialRow.razor │ │ │ │ │ ├── SocialRow.razor.cs │ │ │ │ │ ├── SocialRow.razor.scss │ │ │ │ │ └── TwitterIcon.razor │ │ │ │ ├── ConfirmPage.razor │ │ │ │ ├── ConfirmPage.razor.cs │ │ │ │ ├── ConfirmPage.razor.scss │ │ │ │ ├── ForgotPasswordPage.razor │ │ │ │ ├── ForgotPasswordPage.razor.cs │ │ │ │ ├── ForgotPasswordPage.razor.scss │ │ │ │ ├── ResetPasswordPage.razor │ │ │ │ ├── ResetPasswordPage.razor.cs │ │ │ │ ├── ResetPasswordPage.razor.scss │ │ │ │ ├── SignIn │ │ │ │ │ ├── OtpPanel.razor │ │ │ │ │ ├── OtpPanel.razor.cs │ │ │ │ │ ├── OtpPanel.razor.scss │ │ │ │ │ ├── SignInModal.razor │ │ │ │ │ ├── SignInModal.razor.cs │ │ │ │ │ ├── SignInModal.razor.scss │ │ │ │ │ ├── SignInPage.razor │ │ │ │ │ ├── SignInPage.razor.cs │ │ │ │ │ ├── SignInPage.razor.scss │ │ │ │ │ ├── SignInPanel.razor │ │ │ │ │ ├── SignInPanel.razor.cs │ │ │ │ │ ├── SignInPanel.razor.scss │ │ │ │ │ ├── SignInPanelTab.cs │ │ │ │ │ ├── SignInPanelType.cs │ │ │ │ │ ├── TfaPanel.razor │ │ │ │ │ ├── TfaPanel.razor.cs │ │ │ │ │ └── TfaPanel.razor.scss │ │ │ │ ├── SignUp │ │ │ │ │ ├── SignUpPage.razor │ │ │ │ │ ├── SignUpPage.razor.cs │ │ │ │ │ └── SignUpPage.razor.scss │ │ │ │ └── _Imports.razor │ │ │ ├── Management │ │ │ │ ├── RolesPage.razor │ │ │ │ ├── RolesPage.razor.cs │ │ │ │ ├── RolesPage.razor.scss │ │ │ │ ├── UsersPage.razor │ │ │ │ ├── UsersPage.razor.cs │ │ │ │ └── UsersPage.razor.scss │ │ │ ├── NotAuthorizedPage.razor │ │ │ ├── NotAuthorizedPage.razor.cs │ │ │ ├── NotAuthorizedPage.razor.scss │ │ │ ├── NotFoundPage.razor │ │ │ ├── NotFoundPage.razor.cs │ │ │ ├── NotFoundPage.razor.scss │ │ │ ├── Settings │ │ │ │ ├── Accordion.razor │ │ │ │ ├── Accordion.razor.cs │ │ │ │ ├── Account │ │ │ │ │ ├── AccountSection.razor │ │ │ │ │ ├── AccountSection.razor.cs │ │ │ │ │ ├── AccountSection.razor.scss │ │ │ │ │ ├── ChangeEmailTab.razor │ │ │ │ │ ├── ChangeEmailTab.razor.cs │ │ │ │ │ ├── ChangeEmailTab.razor.scss │ │ │ │ │ ├── ChangePhoneNumberTab.razor │ │ │ │ │ ├── ChangePhoneNumberTab.razor.cs │ │ │ │ │ ├── ChangePhoneNumberTab.razor.scss │ │ │ │ │ ├── DeleteAccountTab.razor │ │ │ │ │ ├── DeleteAccountTab.razor.cs │ │ │ │ │ ├── DeleteAccountTab.razor.scss │ │ │ │ │ ├── PasswordlessTab.razor │ │ │ │ │ ├── PasswordlessTab.razor.cs │ │ │ │ │ └── PasswordlessTab.razor.scss │ │ │ │ ├── ProfileSection.razor │ │ │ │ ├── ProfileSection.razor.cs │ │ │ │ ├── ProfileSection.razor.scss │ │ │ │ ├── SessionsSection.razor │ │ │ │ ├── SessionsSection.razor.cs │ │ │ │ ├── SessionsSection.razor.scss │ │ │ │ ├── SettingsPage.razor │ │ │ │ ├── SettingsPage.razor.cs │ │ │ │ ├── SettingsPage.razor.scss │ │ │ │ ├── TwoFactorSection.razor │ │ │ │ ├── TwoFactorSection.razor.cs │ │ │ │ ├── TwoFactorSection.razor.scss │ │ │ │ └── _Imports.razor │ │ │ ├── SystemPromptsPage.razor │ │ │ ├── SystemPromptsPage.razor.cs │ │ │ ├── SystemPromptsPage.razor.scss │ │ │ └── _Imports.razor │ │ ├── Parameters.cs │ │ ├── Routes.razor │ │ ├── Routes.razor.cs │ │ ├── StaticComponent.cs │ │ ├── WebInteropApp.razor │ │ ├── WelcomModal.razor │ │ ├── WelcomModal.razor.cs │ │ ├── WelcomModal.razor.scss │ │ └── _Imports.razor │ ├── CrystaLearn.Client.Core.csproj │ ├── Extensions │ │ ├── HttpRequestExtensions.cs │ │ ├── IClientCoreServiceCollectionExtensions.cs │ │ ├── IConfigurationBuilderExtensions.cs │ │ ├── IConfigurationExtensions.cs │ │ ├── IJSRuntimeExtensions.cs │ │ ├── ILoggingBuilderExtensions.cs │ │ ├── NavigationManagerExtensions.cs │ │ ├── NotificationExtensions.cs │ │ └── StringExtensions.cs │ ├── Models │ │ └── InitNavPayload.cs │ ├── Scripts │ │ ├── App.ts │ │ ├── WebInteropApp.ts │ │ ├── bswup.ts │ │ ├── events.ts │ │ └── theme.ts │ ├── Services │ │ ├── AbsoluteServerAddressProvider.cs │ │ ├── AppInsightsJsSdkService.cs │ │ ├── AppTelemetryContext.cs │ │ ├── AppThemeType.cs │ │ ├── AuthManager.cs │ │ ├── ClientExceptionHandlerBase.cs │ │ ├── ClientPubSubMessages.cs │ │ ├── ClientSideAuthTokenProvider.cs │ │ ├── Contracts │ │ │ ├── IAppUpdateService.cs │ │ │ ├── IAuthTokenProvider.cs │ │ │ ├── IBitDeviceCoordinator.cs │ │ │ ├── IExceptionHandler.cs │ │ │ ├── IExternalNavigationService.cs │ │ │ ├── ILocalHttpServer.cs │ │ │ ├── IPushNotificationService.cs │ │ │ ├── IStorageService.cs │ │ │ ├── ITelemetryContext.cs │ │ │ └── IWebAuthnService.cs │ │ ├── CultureService.cs │ │ ├── DefaultExternalNavigationService.cs │ │ ├── DiagnosticLog │ │ │ ├── DiagnosticLogger.cs │ │ │ └── DiagnosticLoggerProvider.cs │ │ ├── DocumentService.cs │ │ ├── HttpMessageHandlers │ │ │ ├── AuthDelegatingHandler.cs │ │ │ ├── CacheDelegatingHandler.cs │ │ │ ├── ExceptionDelegatingHandler.cs │ │ │ ├── HttpMessageHandlersChainFactory.cs │ │ │ ├── LoggingDelegatingHandler.cs │ │ │ ├── RequestHeadersDelegatingHandler.cs │ │ │ ├── RequestOptionNames.cs │ │ │ └── RetryDelegatingHandler.cs │ │ ├── NoOpPrerenderStateService.cs │ │ ├── NoopLocalHttpServer.cs │ │ ├── ODataQuery.cs │ │ ├── PromptService.cs │ │ ├── PubSubService.cs │ │ ├── PushNotificationServiceBase.cs │ │ ├── SignInModalService.cs │ │ ├── SignalRInfiniteRetryPolicy.cs │ │ ├── SnackBarService.cs │ │ ├── ThemeService.cs │ │ └── WebAuthnServiceBase.cs │ ├── Styles │ │ ├── ThemeColors.cs │ │ ├── abstracts │ │ │ ├── _bit-css-variables.scss │ │ │ ├── _colors.scss │ │ │ ├── _font-icon-illustrator.scss │ │ │ ├── _font-icon.scss │ │ │ ├── _fonts.scss │ │ │ ├── _functions.scss │ │ │ ├── _media-queries.scss │ │ │ └── _vars.scss │ │ └── app.scss │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── wwwroot │ │ ├── fonts │ │ ├── CrystaLearn-FontIcon │ │ │ ├── CsLearn-Icons-v2.73-2025-07-20.eot │ │ │ ├── CsLearn-Icons-v2.73-2025-07-20.svg │ │ │ ├── CsLearn-Icons-v2.73-2025-07-20.ttf │ │ │ └── CsLearn-Icons-v2.73-2025-07-20.woff │ │ └── Greycliff │ │ │ ├── GreycliffCF-Bold.ttf │ │ │ ├── GreycliffCF-BoldOblique.ttf │ │ │ ├── GreycliffCF-DemiBold.ttf │ │ │ ├── GreycliffCF-DemiBoldOblique.ttf │ │ │ ├── GreycliffCF-ExtraBold.ttf │ │ │ ├── GreycliffCF-ExtraBoldOblique.ttf │ │ │ ├── GreycliffCF-ExtraLight.ttf │ │ │ ├── GreycliffCF-ExtraLightOblique.ttf │ │ │ ├── GreycliffCF-Heavy.ttf │ │ │ ├── GreycliffCF-HeavyOblique.ttf │ │ │ ├── GreycliffCF-Light.ttf │ │ │ ├── GreycliffCF-LightOblique.ttf │ │ │ ├── GreycliffCF-Medium.ttf │ │ │ ├── GreycliffCF-MediumOblique.ttf │ │ │ ├── GreycliffCF-Regular.ttf │ │ │ ├── GreycliffCF-RegularOblique.ttf │ │ │ ├── GreycliffCF-Thin.ttf │ │ │ └── GreycliffCF-ThinOblique.ttf │ │ └── images │ │ ├── 401.svg │ │ ├── 403.svg │ │ ├── 404.svg │ │ ├── footer │ │ ├── github-icon.svg │ │ ├── linkedin-icon.svg │ │ ├── location-icon.svg │ │ ├── tel-icon.svg │ │ ├── x-icon.svg │ │ └── youtube-icon.svg │ │ ├── icons │ │ ├── ai-icon-dark.png │ │ ├── ai-icon-light.png │ │ ├── checkmark-icon.svg │ │ ├── chevron-bottom-icon.svg │ │ ├── error-triangle.svg │ │ ├── github-icon.svg │ │ ├── gmail-icon.png │ │ ├── google-icon.svg │ │ ├── linkedin-icon.svg │ │ ├── outlook-icon.png │ │ ├── twitter-icon.svg │ │ ├── x-icon.svg │ │ └── youtube-icon.svg │ │ ├── os │ │ ├── android.png │ │ ├── apple.png │ │ ├── linux.png │ │ ├── unknown.png │ │ └── windows.png │ │ ├── stat-card-bg-hover.svg │ │ └── stat-card-bg.svg ├── CrystaLearn.Client.Maui │ ├── App.xaml │ ├── App.xaml.cs │ ├── ClientMauiSettings.cs │ ├── Components │ │ └── Pages │ │ │ ├── AboutPage.razor │ │ │ ├── AboutPage.razor.cs │ │ │ └── AboutPage.razor.scss │ ├── CrystaLearn.Client.Maui.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.Services.cs │ ├── MauiProgram.cs │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── Extensions │ │ │ │ └── IAndroidServiceCollectionExtensions.cs │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ ├── Resources │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── styles.xml │ │ │ │ │ └── values-v35 │ │ │ │ │ └── styles.xml │ │ │ └── Services │ │ │ │ ├── AndroidPushNotificationService.cs │ │ │ │ └── PushNotificationFirebaseMessagingService.cs │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.Development.plist │ │ │ ├── Entitlements.Production.plist │ │ │ ├── Extensions │ │ │ │ ├── IMacServiceCollectionExtensions.cs │ │ │ │ └── NSDataExtensions.cs │ │ │ ├── Info.plist │ │ │ ├── Program.cs │ │ │ └── Services │ │ │ │ ├── AppUNUserNotificationCenterDelegate.cs │ │ │ │ └── MacCatalystPushNotificationService.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Extensions │ │ │ │ └── IWindowsServiceCollectionExtensions.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Services │ │ │ │ └── WindowsPushNotificationService.cs │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.Development.plist │ │ │ ├── Entitlements.Production.plist │ │ │ ├── Extensions │ │ │ ├── IIosServiceCollectionExtensions.cs │ │ │ └── NSDataExtensions.cs │ │ │ ├── Info.plist │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── Program.cs │ │ │ └── Services │ │ │ ├── AppUNUserNotificationCenterDelegate.cs │ │ │ └── iOSPushNotificationService.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── AppIcon │ │ │ └── appicon.svg │ │ ├── Raw │ │ │ └── AboutAssets.txt │ │ └── Splash │ │ │ └── splash.svg │ ├── Services │ │ ├── MauiAppInsightsTelemetryInitializer.cs │ │ ├── MauiAppUpdateService.cs │ │ ├── MauiDeviceCoordinator.cs │ │ ├── MauiExceptionHandler.cs │ │ ├── MauiExternalNavigationService.cs │ │ ├── MauiLocalHttpServer.cs │ │ ├── MauiStorageService.cs │ │ ├── MauiTelemetryContext.cs │ │ └── MauiWebAuthnService.cs │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── wwwroot │ │ └── index.html ├── CrystaLearn.Client.Web │ ├── ClientWebSettings.cs │ ├── Components │ │ ├── AppBswupProgressBar.razor │ │ └── Pages │ │ │ ├── AboutPage.razor │ │ │ ├── AboutPage.razor.cs │ │ │ └── AboutPage.razor.scss │ ├── CrystaLearn.Client.Web.csproj │ ├── Program.Services.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── WebAppUpdateService.cs │ │ ├── WebAuthnService.cs │ │ ├── WebClientExceptionHandler.cs │ │ ├── WebClientPrerenderStateService.cs │ │ ├── WebDeviceCoordinator.cs │ │ ├── WebPushNotificationService.cs │ │ └── WebStorageService.cs │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── wwwroot │ │ ├── .well-known │ │ ├── apple-app-site-association │ │ └── assetlinks.json │ │ ├── _headers │ │ ├── index.html │ │ ├── manifest.json │ │ ├── robots.txt │ │ ├── service-worker.js │ │ ├── service-worker.published.js │ │ └── staticwebapp.config.json └── CrystaLearn.Client.Windows │ ├── .config │ └── dotnet-tools.json │ ├── ClientWindowsSettings.cs │ ├── Components │ └── Pages │ │ ├── AboutPage.razor │ │ ├── AboutPage.razor.cs │ │ └── AboutPage.razor.scss │ ├── CrystaLearn.Client.Windows.csproj │ ├── Program.Services.cs │ ├── Program.cs │ ├── Services │ ├── WindowsAppInsightsTelemetryInitializer.cs │ ├── WindowsAppUpdateService.cs │ ├── WindowsDeviceCoordinator.cs │ ├── WindowsExceptionHandler.cs │ ├── WindowsLocalHttpServer.cs │ ├── WindowsPushNotificationService.cs │ ├── WindowsStorageService.cs │ ├── WindowsTelemetryContext.cs │ └── WindowsWebAuthnService.cs │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── wwwroot │ ├── .gitkeep │ └── favicon.ico ├── Console └── CrystaLearn.Console │ ├── CrystaLearn.Console.csproj │ ├── Extensions │ └── ApplicationBuilderExtensions.cs │ ├── Program.cs │ └── appsettings.json ├── Core ├── CrystaLearn.Core.Test │ ├── AzureBoardTests │ │ └── AzureBoardServiceTests.cs │ ├── CrystaLearn.Core.Test.csproj │ ├── GitHubTests │ │ └── GitHubServiceTests.cs │ ├── Infra │ │ └── TestBase.cs │ ├── InfraWiringTests.cs │ ├── Sync │ │ └── AzureBoardSyncServiceTests.cs │ └── TextUtilTests │ │ └── GetGitHubFolderUrlInfoTests.cs └── CrystaLearn.Core │ ├── CrystaLearn.Core.csproj │ ├── Data │ ├── AppDbContext.cs │ ├── AppDbContextFactory.cs │ └── Configurations │ │ ├── Attachments │ │ └── AttachmentConfiguration.cs │ │ ├── Chatbot │ │ └── SystemPromptConfiguration.cs │ │ ├── Crysta │ │ ├── CrystaProgramConfiguration.cs │ │ ├── CrystaProgramSyncModuleConfiguration.cs │ │ ├── CrystaTaskCommentConfiguration.cs │ │ ├── CrystaTaskConfiguration.cs │ │ ├── CrystaTaskRevisionConfiguration.cs │ │ └── CrystaTaskUpdateConfiguration.cs │ │ ├── Identity │ │ ├── RoleClaimConfiguration.cs │ │ ├── RoleConfiguration.cs │ │ ├── UserClaimConfiguration.cs │ │ ├── UserConfiguration.cs │ │ ├── UserRoleConfiguration.cs │ │ └── WebAuthnCredentialConfiguration.cs │ │ ├── PostgresPrimaryKeySequentialGuidDefaultValueConvention.cs │ │ └── PushNotification │ │ └── PushNotificationSubscriptionConfiguration.cs │ ├── Extensions │ ├── ApplicationBuilderExtensions.cs │ └── StringExtensions.cs │ ├── Mappers │ ├── ChatbotMapper.cs │ ├── CrystaProgramMapper.cs │ ├── DocumentMapper.cs │ ├── IdentityMapper.cs │ ├── PushNotificationMapper.cs │ ├── Readme.md │ └── SyncInfoMapper.cs │ ├── Migrations │ ├── 20250919160411_Initial.Designer.cs │ ├── 20250919160411_Initial.cs │ ├── 20251113120438_SyncAzureDevOpsTasks.Designer.cs │ ├── 20251113120438_SyncAzureDevOpsTasks.cs │ ├── 20251121081101_SyncAzureDevops.Designer.cs │ ├── 20251121081101_SyncAzureDevops.cs │ ├── 20251121101832_UpdatePropertyNameInCrystaTaskUpdate.Designer.cs │ ├── 20251121101832_UpdatePropertyNameInCrystaTaskUpdate.cs │ ├── 20251126075751_RefactorCrystaTaskProperty.Designer.cs │ ├── 20251126075751_RefactorCrystaTaskProperty.cs │ ├── 20251127142845_AddCrystaTaskRevisionsWithAllColumns.Designer.cs │ ├── 20251127142845_AddCrystaTaskRevisionsWithAllColumns.cs │ ├── 20251128085546_AddCrystaProgramSyncModule.Designer.cs │ ├── 20251128085546_AddCrystaProgramSyncModule.cs │ ├── 20251202202840_AddProviderStatusProviderParentId.Designer.cs │ ├── 20251202202840_AddProviderStatusProviderParentId.cs │ ├── 20251202204501_AddUniqueIndexToSyncId.Designer.cs │ ├── 20251202204501_AddUniqueIndexToSyncId.cs │ ├── 20251204144555_RefactorCrystaTask.Designer.cs │ ├── 20251204144555_RefactorCrystaTask.cs │ ├── 20251205105438_RefactorCrystaCommentTask.Designer.cs │ ├── 20251205105438_RefactorCrystaCommentTask.cs │ └── AppDbContextModelSnapshot.cs │ ├── Models │ ├── Attachments │ │ └── Attachment.cs │ ├── Chatbot │ │ └── SystemPrompt.cs │ ├── Crysta │ │ ├── CrystaProgram.cs │ │ ├── CrystaProgramSyncModule.cs │ │ ├── CrystaTask.cs │ │ ├── CrystaTaskComment.cs │ │ ├── CrystaTaskRevision.cs │ │ ├── CrystaTaskUpdate.cs │ │ ├── Document.cs │ │ └── SyncInfo.cs │ ├── Emailing │ │ ├── ElevatedAccessTokenTemplateModel.cs │ │ ├── EmailTokenTemplateModel.cs │ │ ├── OtpTemplateModel.cs │ │ ├── ResetPasswordTokenTemplateModel.cs │ │ └── TwoFactorTokenTemplateModel.cs │ ├── Identity │ │ ├── Role.cs │ │ ├── RoleClaim.cs │ │ ├── User.cs │ │ ├── UserAccount.cs │ │ ├── UserClaim.cs │ │ ├── UserLogin.cs │ │ ├── UserRole.cs │ │ ├── UserSession.cs │ │ ├── UserToken.cs │ │ └── WebAuthnCredential.cs │ ├── Infra │ │ └── Entity.cs │ └── PushNotification │ │ └── PushNotificationSubscription.cs │ └── Services │ ├── AzureBoard │ ├── AzureBoardService.cs │ └── AzureBoardSyncConfig.cs │ ├── Contracts │ ├── IAzureBoardService.cs │ ├── IAzureBoardSyncService.cs │ ├── ICrystaProgramRepository.cs │ ├── ICrystaProgramSyncModuleService.cs │ ├── ICrystaProgramSyncService.cs │ ├── ICrystaTaskRepository.cs │ ├── IDocumentRepository.cs │ └── IGitHubService.cs │ ├── CrystaProgramRepositoryFake.cs │ ├── CrystaProgramSyncModuleService.cs │ ├── CrystaProgramSyncModuleServiceFake.cs │ ├── CrystaTaskRepository.cs │ ├── DocumentRepositoryDirectGitHub.cs │ ├── DocumentRepositoryFake.cs │ ├── DocumentRepositoryInMemory.cs │ ├── GitHub │ ├── GitHubExtensions.cs │ ├── GitHubItem.cs │ └── GitHubService.cs │ ├── Jobs │ └── CrystaProgramSyncJobRunner.cs │ └── Sync │ ├── AzureBoardSyncService.cs │ ├── CrystaProgramSyncService.cs │ ├── SyncItem.cs │ └── SyncResult.cs ├── Directory.Build.props ├── Directory.Packages.props ├── Server ├── CrystaLearn.Server.Api │ ├── .config │ │ └── dotnet-tools.json │ ├── Components │ │ ├── ElevatedAccessTokenTemplate.razor │ │ ├── EmailTokenTemplate.razor │ │ ├── OtpTemplate.razor │ │ ├── ResetPasswordTokenTemplate.razor │ │ ├── TwoFactorTokenTemplate.razor │ │ └── _Imports.razor │ ├── Controllers │ │ ├── AppControllerBase.cs │ │ ├── AttachmentController.cs │ │ ├── Chatbot │ │ │ └── ChatbotController.cs │ │ ├── Crysta │ │ │ ├── CrystaProgramController.cs │ │ │ └── DocumentController.cs │ │ ├── Dashboard │ │ │ └── DashboardController.cs │ │ ├── Diagnostics │ │ │ └── DiagnosticsController.cs │ │ ├── Identity │ │ │ ├── IdentityController.EmailConfirmation.cs │ │ │ ├── IdentityController.PhoneConfirmation.cs │ │ │ ├── IdentityController.ResetPassword.cs │ │ │ ├── IdentityController.SocialSignIn.cs │ │ │ ├── IdentityController.WebAuthn.cs │ │ │ ├── IdentityController.cs │ │ │ ├── RoleManagementController.cs │ │ │ ├── UserController.WebAuthn.cs │ │ │ ├── UserController.cs │ │ │ └── UserManagementController.cs │ │ └── PushNotification │ │ │ └── PushNotificationController.cs │ ├── CrystaLearn.Server.Api.csproj │ ├── Extensions │ │ ├── HttpContextExtensions.cs │ │ ├── HttpRequestExtensions.cs │ │ ├── KnownExceptionExtensions.cs │ │ ├── SignInManagerExtensions.cs │ │ └── UserManagerExtensions.cs │ ├── Filters │ │ ├── ForceUpdateActionFilter.cs │ │ ├── HangfireDashboardAuthorizationFilter.cs │ │ └── ODataOperationFilter.cs │ ├── Program.Middlewares.cs │ ├── Program.Services.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── EmailStrings.fa.resx │ │ ├── EmailStrings.resx │ │ └── EmailStrings.sv.resx │ ├── ServerApiSettings.cs │ ├── Services │ │ ├── EmailService.cs │ │ ├── Identity │ │ │ ├── AppBearerTokenOptionsConfigurator.cs │ │ │ ├── AppIdentityErrorDescriber.cs │ │ │ ├── AppJwtSecureDataFormat.cs │ │ │ ├── AppUserClaimsPrincipalFactory.cs │ │ │ ├── AppUserConfirmation.cs │ │ │ └── UserClaimsService.cs │ │ ├── Jobs │ │ │ ├── EmailServiceJobsRunner.cs │ │ │ ├── PhoneServiceJobsRunner.cs │ │ │ └── PushNotificationJobRunner.cs │ │ ├── PhoneService.cs │ │ ├── PushNotificationService.cs │ │ ├── ResponseCacheService.cs │ │ ├── ServerExceptionHandler.cs │ │ └── ServerJsonContext.cs │ ├── SignalR │ │ ├── AppHub.Chatbot.cs │ │ └── AppHub.cs │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── wwwroot │ │ ├── images │ │ └── icon.png │ │ └── scripts │ │ └── swagger-utils.js ├── CrystaLearn.Server.Shared │ ├── CrystaLearn.Server.Shared.csproj │ ├── Extensions │ │ ├── HttpContextExtensions.cs │ │ ├── HttpRequestExtensions.cs │ │ ├── WebApplicationBuilderExtensions.cs │ │ └── WebApplicationExtensions.cs │ ├── ServerSharedSettings.cs │ └── Services │ │ ├── AppOpenTelemetryProcessor.cs │ │ └── AppResponseCachePolicy.cs └── CrystaLearn.Server.Web │ ├── .config │ └── dotnet-tools.json │ ├── Components │ ├── App.razor │ ├── App.razor.cs │ ├── Layout │ │ └── SsrLayout.razor │ ├── Link.razor │ ├── Link.razor.cs │ ├── Script.razor │ ├── Script.razor.cs │ └── _Imports.razor │ ├── CrystaLearn.Server.Web.csproj │ ├── Endpoints │ ├── SiteMapsEndpoint.cs │ └── WebInteropAppEndpoint.cs │ ├── Extensions │ └── HttpRequestExtensions.cs │ ├── Program.Middlewares.cs │ ├── Program.Services.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerWebSettings.cs │ └── Services │ ├── NoOpAntiforgery.cs │ ├── ScssCompilerService.cs │ ├── ServerSideAuthTokenProvider.cs │ ├── WebServerExceptionHandler.cs │ └── WebServerPrerenderStateService.cs ├── Shared └── CrystaLearn.Shared │ ├── Attributes │ ├── AppResponseCacheAttribute.cs │ ├── AutoInjectAttribute.cs │ └── DtoResourceTypeAttribute.cs │ ├── Controllers │ ├── Attributes.cs │ ├── Chatbot │ │ └── IChatbotController.cs │ ├── Crysta │ │ ├── ICrystaProgramController.cs │ │ └── IDocumentController.cs │ ├── Dashboard │ │ └── IDashboardController.cs │ ├── Diagnostics │ │ └── IDiagnosticsController.cs │ ├── IAppController.cs │ ├── IAttachmentController.cs │ ├── IMinimalApiController.cs │ ├── Identity │ │ ├── IIdentityController.cs │ │ ├── IRoleManagementController.cs │ │ ├── IUserController.cs │ │ └── IUserManagementController.cs │ ├── PushNotification │ │ └── IPushNotificationController.cs │ └── Readme.md │ ├── CrystaLearn.Shared.csproj │ ├── Dtos │ ├── AppJsonContext.cs │ ├── Chatbot │ │ ├── StartChatbotRequest.cs │ │ └── SystemPromptDto.cs │ ├── Crysta │ │ ├── CrystaProgramDto.cs │ │ ├── CrystaProgramLightDto.cs │ │ ├── DocumentDto.cs │ │ └── SyncInfoDto.cs │ ├── Dashboard │ │ ├── OverallAnalyticsStatsDataResponseDto.cs │ │ ├── ProductPercentagePerCategoryResponseDto.cs │ │ └── ProductsCountPerCategoryResponseDto.cs │ ├── Diagnostic │ │ └── DiagnosticLogDto.cs │ ├── Identity │ │ ├── ChangePasswordRequestDto.cs │ │ ├── ChangeUserNameRequestDto.cs │ │ ├── ClaimDto.cs │ │ ├── ConfirmEmailRequestDto.cs │ │ ├── ConfirmPhoneRequestDto.cs │ │ ├── EditUserRequestDto.cs │ │ ├── IdentityRequestDto.cs │ │ ├── RefreshTokenRequestDto.cs │ │ ├── ResetPasswordRequestDto.cs │ │ ├── RoleDto.cs │ │ ├── SendEmailTokenRequestDto.cs │ │ ├── SendNotificationToRoleDto.cs │ │ ├── SendPhoneTokenRequestDto.cs │ │ ├── SendResetPasswordTokenRequestDto.cs │ │ ├── SignInRequestDto.cs │ │ ├── SignInResponseDto.cs │ │ ├── SignUpRequestDto.cs │ │ ├── TokenResponseDto.cs │ │ ├── TwoFactorAuthRequestDto.cs │ │ ├── TwoFactorAuthResponseDto.cs │ │ ├── UpdateUserSessionRequestDto.cs │ │ ├── UserDto.cs │ │ ├── UserRoleDto.cs │ │ ├── UserSessionDto.cs │ │ ├── VerifyWebAuthnAndSignInRequestDto.cs │ │ └── WebAuthnAssertionOptionsRequestDto.cs │ ├── IdentityJsonContext.cs │ ├── PagedResultDto.cs │ ├── PushNotification │ │ └── PushNotificationSubscriptionDto.cs │ └── Statistics │ │ ├── GitHubStats.cs │ │ └── NugetStatsDto.cs │ ├── Enums │ ├── AccountProviderType.cs │ ├── AttachmentKind.cs │ ├── CrystaTaskStatus.cs │ ├── DocumentType.cs │ ├── Gender.cs │ ├── PromptKind.cs │ ├── SyncModuleType.cs │ ├── SyncStatus.cs │ ├── UserSessionNotificationStatus.cs │ └── VerificationStatus.cs │ ├── Exceptions │ ├── AppProblemDetails.cs │ ├── BadRequestException.cs │ ├── ClientNotSupportedException.cs │ ├── ConflictException.cs │ ├── DomainLogicException.cs │ ├── ErrorResourcePayload.cs │ ├── ForbiddenException.cs │ ├── KnownException.cs │ ├── ResourceNotFoundException.cs │ ├── ResourceValidationException.cs │ ├── RestException.cs │ ├── ServerConnectionException.cs │ ├── TooManyRequestsExceptions.cs │ ├── UnauthorizedException.cs │ └── UnknownException.cs │ ├── Extensions │ ├── ByteArrayExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── ExceptionExtensions.cs │ ├── IAuthorizationServiceExtensions.cs │ ├── ICollectionExtensions.cs │ ├── IConfigurationBuilderExtensions.cs │ ├── ISharedServiceCollectionExtensions.cs │ ├── JsonSeralizerExtensions.cs │ ├── LinqExtensions.cs │ ├── TupleExtensions.cs │ └── UriExtensions.cs │ ├── Mapper.cs │ ├── PageUrls.Identity.cs │ ├── PageUrls.SettingsSections.cs │ ├── PageUrls.cs │ ├── Resources │ ├── AppStrings.fa.resx │ ├── AppStrings.resx │ ├── AppStrings.sv.resx │ ├── IdentityStrings.fa.resx │ ├── IdentityStrings.resx │ ├── IdentityStrings.sv.resx │ └── StringLocalizerProvider.cs │ ├── Services │ ├── AppClaimTypes.cs │ ├── AppEnvironment.cs │ ├── AppFeatureRequirement.cs │ ├── AppFeatures.cs │ ├── AppPlatform.cs │ ├── AppQueryStringCollection.cs │ ├── AppRoles.cs │ ├── AuthPolicies.cs │ ├── Contracts │ │ ├── IDateTimeProvider.cs │ │ └── IPrerenderStateService.cs │ ├── CultureInfoManager.cs │ ├── DateTimeProvider.cs │ ├── GitHubUtil.cs │ ├── SharedChatProcessMessages.cs │ ├── SharedExceptionHandler.cs │ └── SharedPubSubMessages.cs │ ├── SharedSettings.cs │ ├── Urls.Crysta.cs │ ├── Urls.Identity.cs │ ├── Urls.SettingsSections.cs │ ├── Urls.cs │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ └── appsettings.json └── Test └── CrystaLearn.Test ├── .config └── dotnet-tools.json ├── .runsettings ├── AppTestServer.cs ├── CrystaLearn.Test.csproj ├── Extensions ├── PlaywrightVideoRecordingExtensions.cs └── WebApplicationBuilderExtensions.cs ├── IdentityApiTests.cs ├── IdentityPagesTests.cs ├── Services ├── TestAuthTokenProvider.cs └── TestStorageService.cs ├── TestData.cs └── TestsInitializer.cs /.azure/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.azure/ci.yml -------------------------------------------------------------------------------- /.azure/cslearn-migration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.azure/cslearn-migration.yml -------------------------------------------------------------------------------- /.azure/migration-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.azure/migration-ci.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/prompts/resx.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/prompts/resx.prompt.md -------------------------------------------------------------------------------- /.github/prompts/scaffold.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/prompts/scaffold.prompt.md -------------------------------------------------------------------------------- /.github/workflows/cd-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/workflows/cd-develop.yml -------------------------------------------------------------------------------- /.github/workflows/cd-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/workflows/cd-production.yml -------------------------------------------------------------------------------- /.github/workflows/cd-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/workflows/cd-template.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.github/workflows/dotnet-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/.vsconfig -------------------------------------------------------------------------------- /Bit.ResxTranslator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/Bit.ResxTranslator.json -------------------------------------------------------------------------------- /Clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/Clean.bat -------------------------------------------------------------------------------- /Clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/Clean.sh -------------------------------------------------------------------------------- /CrystaLearn.TestOnly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/CrystaLearn.TestOnly.sln -------------------------------------------------------------------------------- /CrystaLearn.Web.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/CrystaLearn.Web.slnf -------------------------------------------------------------------------------- /CrystaLearn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/CrystaLearn.sln -------------------------------------------------------------------------------- /CrystaLearn.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/CrystaLearn.slnx -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | The initial documentation for CS System 2 | -------------------------------------------------------------------------------- /docs/architecture/sync-document-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/architecture/sync-document-overview.md -------------------------------------------------------------------------------- /docs/architecture/sync-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/architecture/sync-overview.md -------------------------------------------------------------------------------- /docs/architecture/sync-social-activity-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/architecture/sync-social-activity-overview.md -------------------------------------------------------------------------------- /docs/architecture/sync-task-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/architecture/sync-task-overview.md -------------------------------------------------------------------------------- /docs/gitdocs/badgedoc/badge-code/info_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/gitdocs/badgedoc/badge-code/info_en.md -------------------------------------------------------------------------------- /docs/gitdocs/badgedoc/badge-code/info_fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/gitdocs/badgedoc/badge-code/info_fa.md -------------------------------------------------------------------------------- /docs/gitdocs/badgedoc/badge-code/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/gitdocs/badgedoc/badge-code/spec.json -------------------------------------------------------------------------------- /docs/roadmap/cs-system-v0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/roadmap/cs-system-v0.2.md -------------------------------------------------------------------------------- /docs/roadmap/cs-system-v0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/roadmap/cs-system-v0.3.md -------------------------------------------------------------------------------- /docs/roadmap/cs-system-v0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/roadmap/cs-system-v0.4.md -------------------------------------------------------------------------------- /docs/standards/contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/standards/contribution.md -------------------------------------------------------------------------------- /docs/standards/working-on-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/standards/working-on-issues.md -------------------------------------------------------------------------------- /docs/technical/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/technical/architecture.md -------------------------------------------------------------------------------- /docs/technical/cs-system-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/technical/cs-system-api.md -------------------------------------------------------------------------------- /docs/technical/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/technical/models.md -------------------------------------------------------------------------------- /docs/technical/setup-dev-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/docs/technical/setup-dev-environment.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/global.json -------------------------------------------------------------------------------- /settings.VisualStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/settings.VisualStudio.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/ClientCoreSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/ClientCoreSettings.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/ComponentMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/ComponentMetadata.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AppClientCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AppClientCoordinator.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AppComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AppComponentBase.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AppDataAnnotationsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AppDataAnnotationsValidator.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AppErrorBoundary.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AppErrorBoundary.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AppErrorBoundary.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AppErrorBoundary.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AppErrorBoundary.razor.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AppRouteDataPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AppRouteDataPublisher.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AuthenticatingModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AuthenticatingModal.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AuthenticatingModal.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AuthenticatingModal.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/AuthenticatingModal.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/AuthenticatingModal.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/AppPageData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/AppPageData.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/AppPageData.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/AppPageData.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/LoadingComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/LoadingComponent.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/LoadingComponent.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/LoadingComponent.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/ProductImage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/ProductImage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/ProductImage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/ProductImage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/Prompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/Prompt.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/Prompt.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/Prompt.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/Prompt.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/Prompt.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Common/RedirectToSignIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Common/RedirectToSignIn.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/CsLearnIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/CsLearnIcon.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/CsLearnIcon.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/CsLearnIcon.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/CsLearnIcon.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/CsLearnIcon.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/CsLearnIconName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/CsLearnIconName.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/DocumentComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/DocumentComponent.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/DocumentComponent.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/DocumentComponent.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/DocumentComponent.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/DocumentComponent.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppAiChatPanel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppAiChatPanel.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppAiChatPanel.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppAiChatPanel.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppAiChatPanel.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppAiChatPanel.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppJsBridge.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppJsBridge.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppJsBridge.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppJsBridge.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppShell.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppShell.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppShell.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppShell.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppShell.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppShell.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppSnackBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppSnackBar.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppSnackBar.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppSnackBar.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/AppSnackBar.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/AppSnackBar.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Footer/CrystaFooter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Footer/CrystaFooter.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Footer/CrystaFooter.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Footer/CrystaFooter.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Footer/CrystaFooter.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Footer/CrystaFooter.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/ForceUpdateSnackBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/ForceUpdateSnackBar.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/ForceUpdateSnackBar.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/ForceUpdateSnackBar.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/AppMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/AppMenu.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/AppMenu.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/AppMenu.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/AppMenu.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/AppMenu.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/CrystaHeader.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/CrystaHeader.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/CrystaHeader.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/CrystaHeader.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/CrystaHeader.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/CrystaHeader.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/DiagnosticSpacer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/DiagnosticSpacer.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/IdentityHeader.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/IdentityHeader.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/IdentityHeader.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Header/IdentityHeader.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Header/SignOutConfirmDialog.razor.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/MainLayout.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/MainLayout.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/MainLayout.razor.items.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/MainLayout.razor.items.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/MainLayout.razor.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Nav/CrystaNav.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Nav/CrystaNav.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Nav/CrystaNav.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Nav/CrystaNav.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/Nav/CrystaNav.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/Nav/CrystaNav.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/NavBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/NavBar.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/NavBar.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/NavBar.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/NavBar.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/NavBar.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Layout/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Layout/_Imports.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/AppPageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/AppPageBase.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Authorize.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Authorize.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Authorize.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Authorize.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Dashboard/DashboardPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Dashboard/DashboardPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Dashboard/DashboardPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Dashboard/DashboardPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Home/HomePage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Home/HomePage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Home/HomePage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Home/HomePage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Home/HomePage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Home/HomePage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ConfirmPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ConfirmPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ConfirmPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ConfirmPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ConfirmPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ConfirmPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ResetPasswordPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/ResetPasswordPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignIn/OtpPanel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignIn/OtpPanel.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignIn/SignInPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignIn/SignInPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignIn/TfaPanel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignIn/TfaPanel.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignUp/SignUpPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/SignUp/SignUpPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Identity/_Imports.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Management/RolesPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Management/RolesPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Management/RolesPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Management/RolesPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Management/RolesPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Management/RolesPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Management/UsersPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Management/UsersPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Management/UsersPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Management/UsersPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Management/UsersPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Management/UsersPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/NotAuthorizedPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/NotAuthorizedPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/NotAuthorizedPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/NotAuthorizedPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/NotAuthorizedPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/NotAuthorizedPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/NotFoundPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/NotFoundPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/NotFoundPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/NotFoundPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/NotFoundPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/NotFoundPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/Accordion.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/Accordion.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/Accordion.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/Accordion.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/Account/AccountSection.razor.scss: -------------------------------------------------------------------------------- 1 | section { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/Account/ChangeEmailTab.razor.scss: -------------------------------------------------------------------------------- 1 | section { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/Account/ChangePhoneNumberTab.razor.scss: -------------------------------------------------------------------------------- 1 | section { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/ProfileSection.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/ProfileSection.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/ProfileSection.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/ProfileSection.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/ProfileSection.razor.scss: -------------------------------------------------------------------------------- 1 | section { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SessionsSection.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SessionsSection.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SettingsPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SettingsPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SettingsPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SettingsPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SettingsPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/SettingsPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/TwoFactorSection.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/TwoFactorSection.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/TwoFactorSection.razor.scss: -------------------------------------------------------------------------------- 1 | section { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/Settings/_Imports.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/SystemPromptsPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/SystemPromptsPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/SystemPromptsPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/SystemPromptsPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/SystemPromptsPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Pages/SystemPromptsPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Pages/_Imports.razor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Parameters.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Routes.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/Routes.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/Routes.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/StaticComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/StaticComponent.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/WebInteropApp.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/WebInteropApp.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/WelcomModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/WelcomModal.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/WelcomModal.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/WelcomModal.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/WelcomModal.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/WelcomModal.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Components/_Imports.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/CrystaLearn.Client.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/CrystaLearn.Client.Core.csproj -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/IConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/IConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/IConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/IConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/IJSRuntimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/IJSRuntimeExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/ILoggingBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/ILoggingBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/NavigationManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/NavigationManagerExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/NotificationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/NotificationExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Models/InitNavPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Models/InitNavPayload.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Scripts/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Scripts/App.ts -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Scripts/WebInteropApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Scripts/WebInteropApp.ts -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Scripts/bswup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Scripts/bswup.ts -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Scripts/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Scripts/events.ts -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Scripts/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Scripts/theme.ts -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/AbsoluteServerAddressProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/AbsoluteServerAddressProvider.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/AppInsightsJsSdkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/AppInsightsJsSdkService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/AppTelemetryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/AppTelemetryContext.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/AppThemeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/AppThemeType.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/AuthManager.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/ClientExceptionHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/ClientExceptionHandlerBase.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/ClientPubSubMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/ClientPubSubMessages.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/ClientSideAuthTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/ClientSideAuthTokenProvider.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IAppUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IAppUpdateService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IAuthTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IAuthTokenProvider.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IBitDeviceCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IBitDeviceCoordinator.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IExceptionHandler.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IExternalNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IExternalNavigationService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/ILocalHttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/ILocalHttpServer.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IPushNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IPushNotificationService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IStorageService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/ITelemetryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/ITelemetryContext.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/Contracts/IWebAuthnService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/Contracts/IWebAuthnService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/CultureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/CultureService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/DefaultExternalNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/DefaultExternalNavigationService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/DiagnosticLog/DiagnosticLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/DiagnosticLog/DiagnosticLogger.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/DocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/DocumentService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/NoOpPrerenderStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/NoOpPrerenderStateService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/NoopLocalHttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/NoopLocalHttpServer.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/ODataQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/ODataQuery.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/PromptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/PromptService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/PubSubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/PubSubService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/PushNotificationServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/PushNotificationServiceBase.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/SignInModalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/SignInModalService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/SignalRInfiniteRetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/SignalRInfiniteRetryPolicy.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/SnackBarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/SnackBarService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/ThemeService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Services/WebAuthnServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Services/WebAuthnServiceBase.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/ThemeColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/ThemeColors.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_bit-css-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_bit-css-variables.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_colors.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_font-icon-illustrator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_font-icon-illustrator.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_font-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_font-icon.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_fonts.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_functions.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_media-queries.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/abstracts/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/abstracts/_vars.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/Styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/Styles/app.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/appsettings.Development.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/appsettings.Production.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/appsettings.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/package-lock.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/package.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/tsconfig.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Bold.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-DemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-DemiBold.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-ExtraBold.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Heavy.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Light.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Medium.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Regular.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/fonts/Greycliff/GreycliffCF-Thin.ttf -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/401.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/401.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/403.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/404.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/github-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/linkedin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/linkedin-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/location-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/location-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/tel-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/tel-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/x-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/x-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/youtube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/footer/youtube-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/ai-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/ai-icon-dark.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/ai-icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/ai-icon-light.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/checkmark-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/checkmark-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/chevron-bottom-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/chevron-bottom-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/error-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/error-triangle.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/github-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/gmail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/gmail-icon.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/google-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/google-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/linkedin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/linkedin-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/outlook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/outlook-icon.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/twitter-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/x-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/x-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/youtube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/icons/youtube-icon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/os/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/os/android.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/os/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/os/apple.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/os/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/os/linux.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/os/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/os/unknown.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/os/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/os/windows.png -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/stat-card-bg-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/stat-card-bg-hover.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Core/wwwroot/images/stat-card-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Core/wwwroot/images/stat-card-bg.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/App.xaml -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/App.xaml.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/ClientMauiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/ClientMauiSettings.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Components/Pages/AboutPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Components/Pages/AboutPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Components/Pages/AboutPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Components/Pages/AboutPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Components/Pages/AboutPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Components/Pages/AboutPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/CrystaLearn.Client.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/CrystaLearn.Client.Maui.csproj -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/MainPage.xaml -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/MauiProgram.Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/MauiProgram.Services.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/MauiProgram.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Entitlements.Development.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Entitlements.Development.plist -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Entitlements.Production.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Entitlements.Production.plist -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Extensions/NSDataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Extensions/NSDataExtensions.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/iOS/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/iOS/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiAppInsightsTelemetryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiAppInsightsTelemetryInitializer.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiAppUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiAppUpdateService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiDeviceCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiDeviceCoordinator.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiExceptionHandler.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiExternalNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiExternalNavigationService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiLocalHttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiLocalHttpServer.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiStorageService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiTelemetryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiTelemetryContext.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/Services/MauiWebAuthnService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/Services/MauiWebAuthnService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/_Imports.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/appsettings.Development.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/appsettings.Production.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/appsettings.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Maui/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Maui/wwwroot/index.html -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/ClientWebSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/ClientWebSettings.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Components/AppBswupProgressBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Components/AppBswupProgressBar.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Components/Pages/AboutPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Components/Pages/AboutPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Components/Pages/AboutPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Components/Pages/AboutPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Components/Pages/AboutPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Components/Pages/AboutPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/CrystaLearn.Client.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/CrystaLearn.Client.Web.csproj -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Program.Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Program.Services.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Program.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Services/WebAppUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Services/WebAppUpdateService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Services/WebAuthnService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Services/WebAuthnService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Services/WebClientExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Services/WebClientExceptionHandler.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Services/WebClientPrerenderStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Services/WebClientPrerenderStateService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Services/WebDeviceCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Services/WebDeviceCoordinator.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Services/WebPushNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Services/WebPushNotificationService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/Services/WebStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/Services/WebStorageService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/_Imports.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/appsettings.Development.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/appsettings.Production.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/appsettings.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/.well-known/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/.well-known/apple-app-site-association -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/.well-known/assetlinks.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/_headers -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/index.html -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/manifest.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/robots.txt -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/service-worker.js -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/service-worker.published.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/service-worker.published.js -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Web/wwwroot/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Web/wwwroot/staticwebapp.config.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/ClientWindowsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/ClientWindowsSettings.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Components/Pages/AboutPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Components/Pages/AboutPage.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Components/Pages/AboutPage.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Components/Pages/AboutPage.razor.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Components/Pages/AboutPage.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Components/Pages/AboutPage.razor.scss -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/CrystaLearn.Client.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/CrystaLearn.Client.Windows.csproj -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Program.Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Program.Services.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Program.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsAppUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsAppUpdateService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsDeviceCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsDeviceCoordinator.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsExceptionHandler.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsLocalHttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsLocalHttpServer.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsPushNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsPushNotificationService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsStorageService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsTelemetryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsTelemetryContext.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/Services/WindowsWebAuthnService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/Services/WindowsWebAuthnService.cs -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/_Imports.razor -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/appsettings.Development.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/appsettings.Production.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/appsettings.json -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/wwwroot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Client/CrystaLearn.Client.Windows/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Client/CrystaLearn.Client.Windows/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Console/CrystaLearn.Console/CrystaLearn.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Console/CrystaLearn.Console/CrystaLearn.Console.csproj -------------------------------------------------------------------------------- /src/Console/CrystaLearn.Console/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Console/CrystaLearn.Console/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Console/CrystaLearn.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Console/CrystaLearn.Console/Program.cs -------------------------------------------------------------------------------- /src/Console/CrystaLearn.Console/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Console/CrystaLearn.Console/appsettings.json -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core.Test/AzureBoardTests/AzureBoardServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core.Test/AzureBoardTests/AzureBoardServiceTests.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core.Test/CrystaLearn.Core.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core.Test/CrystaLearn.Core.Test.csproj -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core.Test/GitHubTests/GitHubServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core.Test/GitHubTests/GitHubServiceTests.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core.Test/Infra/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core.Test/Infra/TestBase.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core.Test/InfraWiringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core.Test/InfraWiringTests.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core.Test/Sync/AzureBoardSyncServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core.Test/Sync/AzureBoardSyncServiceTests.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core.Test/TextUtilTests/GetGitHubFolderUrlInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core.Test/TextUtilTests/GetGitHubFolderUrlInfoTests.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/CrystaLearn.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/CrystaLearn.Core.csproj -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/AppDbContext.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/AppDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/AppDbContextFactory.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Attachments/AttachmentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Attachments/AttachmentConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Chatbot/SystemPromptConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Chatbot/SystemPromptConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Crysta/CrystaProgramConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Crysta/CrystaProgramConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Crysta/CrystaTaskConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Crysta/CrystaTaskConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Identity/RoleClaimConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Identity/RoleClaimConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Identity/RoleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Identity/RoleConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Identity/UserClaimConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Identity/UserClaimConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Identity/UserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Identity/UserConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Data/Configurations/Identity/UserRoleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Data/Configurations/Identity/UserRoleConfiguration.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Mappers/ChatbotMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Mappers/ChatbotMapper.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Mappers/CrystaProgramMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Mappers/CrystaProgramMapper.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Mappers/DocumentMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Mappers/DocumentMapper.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Mappers/IdentityMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Mappers/IdentityMapper.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Mappers/PushNotificationMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Mappers/PushNotificationMapper.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Mappers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Mappers/Readme.md -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Mappers/SyncInfoMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Mappers/SyncInfoMapper.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20250919160411_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20250919160411_Initial.Designer.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20250919160411_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20250919160411_Initial.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251113120438_SyncAzureDevOpsTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251113120438_SyncAzureDevOpsTasks.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251121081101_SyncAzureDevops.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251121081101_SyncAzureDevops.Designer.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251121081101_SyncAzureDevops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251121081101_SyncAzureDevops.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251126075751_RefactorCrystaTaskProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251126075751_RefactorCrystaTaskProperty.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251128085546_AddCrystaProgramSyncModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251128085546_AddCrystaProgramSyncModule.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251202204501_AddUniqueIndexToSyncId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251202204501_AddUniqueIndexToSyncId.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251204144555_RefactorCrystaTask.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251204144555_RefactorCrystaTask.Designer.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251204144555_RefactorCrystaTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251204144555_RefactorCrystaTask.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/20251205105438_RefactorCrystaCommentTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/20251205105438_RefactorCrystaCommentTask.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Migrations/AppDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Migrations/AppDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Attachments/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Attachments/Attachment.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Chatbot/SystemPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Chatbot/SystemPrompt.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/CrystaProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/CrystaProgram.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/CrystaProgramSyncModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/CrystaProgramSyncModule.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/CrystaTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/CrystaTask.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/CrystaTaskComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/CrystaTaskComment.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/CrystaTaskRevision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/CrystaTaskRevision.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/CrystaTaskUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/CrystaTaskUpdate.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/Document.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Crysta/SyncInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Crysta/SyncInfo.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Emailing/ElevatedAccessTokenTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Emailing/ElevatedAccessTokenTemplateModel.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Emailing/EmailTokenTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Emailing/EmailTokenTemplateModel.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Emailing/OtpTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Emailing/OtpTemplateModel.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Emailing/ResetPasswordTokenTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Emailing/ResetPasswordTokenTemplateModel.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Emailing/TwoFactorTokenTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Emailing/TwoFactorTokenTemplateModel.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/Role.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/RoleClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/RoleClaim.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/User.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/UserAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/UserAccount.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/UserClaim.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/UserLogin.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/UserRole.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/UserSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/UserSession.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/UserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/UserToken.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Identity/WebAuthnCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Identity/WebAuthnCredential.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/Infra/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/Infra/Entity.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Models/PushNotification/PushNotificationSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Models/PushNotification/PushNotificationSubscription.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/AzureBoard/AzureBoardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/AzureBoard/AzureBoardService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/AzureBoard/AzureBoardSyncConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/AzureBoard/AzureBoardSyncConfig.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/IAzureBoardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/IAzureBoardService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/IAzureBoardSyncService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/IAzureBoardSyncService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/ICrystaProgramRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/ICrystaProgramRepository.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/ICrystaProgramSyncModuleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/ICrystaProgramSyncModuleService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/ICrystaProgramSyncService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/ICrystaProgramSyncService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/ICrystaTaskRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/ICrystaTaskRepository.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/IDocumentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/IDocumentRepository.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Contracts/IGitHubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Contracts/IGitHubService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/CrystaProgramRepositoryFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/CrystaProgramRepositoryFake.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/CrystaProgramSyncModuleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/CrystaProgramSyncModuleService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/CrystaProgramSyncModuleServiceFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/CrystaProgramSyncModuleServiceFake.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/CrystaTaskRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/CrystaTaskRepository.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/DocumentRepositoryDirectGitHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/DocumentRepositoryDirectGitHub.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/DocumentRepositoryFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/DocumentRepositoryFake.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/DocumentRepositoryInMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/DocumentRepositoryInMemory.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/GitHub/GitHubExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/GitHub/GitHubExtensions.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/GitHub/GitHubItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/GitHub/GitHubItem.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/GitHub/GitHubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/GitHub/GitHubService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Jobs/CrystaProgramSyncJobRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Jobs/CrystaProgramSyncJobRunner.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Sync/AzureBoardSyncService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Sync/AzureBoardSyncService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Sync/CrystaProgramSyncService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Sync/CrystaProgramSyncService.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Sync/SyncItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Sync/SyncItem.cs -------------------------------------------------------------------------------- /src/Core/CrystaLearn.Core/Services/Sync/SyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Core/CrystaLearn.Core/Services/Sync/SyncResult.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Components/ElevatedAccessTokenTemplate.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Components/ElevatedAccessTokenTemplate.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Components/EmailTokenTemplate.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Components/EmailTokenTemplate.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Components/OtpTemplate.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Components/OtpTemplate.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Components/ResetPasswordTokenTemplate.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Components/ResetPasswordTokenTemplate.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Components/TwoFactorTokenTemplate.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Components/TwoFactorTokenTemplate.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Components/_Imports.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/AppControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/AppControllerBase.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/AttachmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/AttachmentController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Chatbot/ChatbotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Chatbot/ChatbotController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Crysta/CrystaProgramController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Crysta/CrystaProgramController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Crysta/DocumentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Crysta/DocumentController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Dashboard/DashboardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Dashboard/DashboardController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Identity/IdentityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Identity/IdentityController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Identity/RoleManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Identity/RoleManagementController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Identity/UserController.WebAuthn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Identity/UserController.WebAuthn.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Identity/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Identity/UserController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Controllers/Identity/UserManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Controllers/Identity/UserManagementController.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/CrystaLearn.Server.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/CrystaLearn.Server.Api.csproj -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Extensions/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Extensions/HttpContextExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Extensions/KnownExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Extensions/KnownExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Extensions/SignInManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Extensions/SignInManagerExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Extensions/UserManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Extensions/UserManagerExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Filters/ForceUpdateActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Filters/ForceUpdateActionFilter.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Filters/HangfireDashboardAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Filters/HangfireDashboardAuthorizationFilter.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Filters/ODataOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Filters/ODataOperationFilter.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Program.Middlewares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Program.Middlewares.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Program.Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Program.Services.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Program.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Resources/EmailStrings.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Resources/EmailStrings.fa.resx -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Resources/EmailStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Resources/EmailStrings.resx -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Resources/EmailStrings.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Resources/EmailStrings.sv.resx -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/ServerApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/ServerApiSettings.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/EmailService.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/Identity/AppIdentityErrorDescriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/Identity/AppIdentityErrorDescriber.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/Identity/AppJwtSecureDataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/Identity/AppJwtSecureDataFormat.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/Identity/AppUserConfirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/Identity/AppUserConfirmation.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/Identity/UserClaimsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/Identity/UserClaimsService.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/Jobs/EmailServiceJobsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/Jobs/EmailServiceJobsRunner.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/Jobs/PhoneServiceJobsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/Jobs/PhoneServiceJobsRunner.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/Jobs/PushNotificationJobRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/Jobs/PushNotificationJobRunner.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/PhoneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/PhoneService.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/PushNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/PushNotificationService.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/ResponseCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/ResponseCacheService.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/ServerExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/ServerExceptionHandler.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/Services/ServerJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/Services/ServerJsonContext.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/SignalR/AppHub.Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/SignalR/AppHub.Chatbot.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/SignalR/AppHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/SignalR/AppHub.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/appsettings.Development.json -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/appsettings.Production.json -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/appsettings.json -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/wwwroot/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/wwwroot/images/icon.png -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Api/wwwroot/scripts/swagger-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Api/wwwroot/scripts/swagger-utils.js -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/CrystaLearn.Server.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/CrystaLearn.Server.Shared.csproj -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/Extensions/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/Extensions/HttpContextExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/Extensions/WebApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/Extensions/WebApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/Extensions/WebApplicationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/Extensions/WebApplicationExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/ServerSharedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/ServerSharedSettings.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/Services/AppOpenTelemetryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/Services/AppOpenTelemetryProcessor.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Shared/Services/AppResponseCachePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Shared/Services/AppResponseCachePolicy.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/App.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/App.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/App.razor.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/Layout/SsrLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/Layout/SsrLayout.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/Link.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/Link.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/Link.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/Link.razor.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/Script.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/Script.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/Script.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/Script.razor.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Components/_Imports.razor -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/CrystaLearn.Server.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/CrystaLearn.Server.Web.csproj -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Endpoints/SiteMapsEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Endpoints/SiteMapsEndpoint.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Endpoints/WebInteropAppEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Endpoints/WebInteropAppEndpoint.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Program.Middlewares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Program.Middlewares.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Program.Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Program.Services.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Program.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/ServerWebSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/ServerWebSettings.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Services/NoOpAntiforgery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Services/NoOpAntiforgery.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Services/ScssCompilerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Services/ScssCompilerService.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Services/ServerSideAuthTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Services/ServerSideAuthTokenProvider.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Services/WebServerExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Services/WebServerExceptionHandler.cs -------------------------------------------------------------------------------- /src/Server/CrystaLearn.Server.Web/Services/WebServerPrerenderStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Server/CrystaLearn.Server.Web/Services/WebServerPrerenderStateService.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Attributes/AppResponseCacheAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Attributes/AppResponseCacheAttribute.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Attributes/AutoInjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Attributes/AutoInjectAttribute.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Attributes/DtoResourceTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Attributes/DtoResourceTypeAttribute.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Attributes.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Chatbot/IChatbotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Chatbot/IChatbotController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Crysta/ICrystaProgramController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Crysta/ICrystaProgramController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Crysta/IDocumentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Crysta/IDocumentController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Dashboard/IDashboardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Dashboard/IDashboardController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Diagnostics/IDiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Diagnostics/IDiagnosticsController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/IAppController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/IAppController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/IAttachmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/IAttachmentController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/IMinimalApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/IMinimalApiController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Identity/IIdentityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Identity/IIdentityController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Identity/IRoleManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Identity/IRoleManagementController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Identity/IUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Identity/IUserController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Identity/IUserManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Identity/IUserManagementController.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Controllers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Controllers/Readme.md -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/CrystaLearn.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/CrystaLearn.Shared.csproj -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/AppJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/AppJsonContext.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Chatbot/StartChatbotRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Chatbot/StartChatbotRequest.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Chatbot/SystemPromptDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Chatbot/SystemPromptDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Crysta/CrystaProgramDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Crysta/CrystaProgramDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Crysta/CrystaProgramLightDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Crysta/CrystaProgramLightDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Crysta/DocumentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Crysta/DocumentDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Crysta/SyncInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Crysta/SyncInfoDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Diagnostic/DiagnosticLogDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Diagnostic/DiagnosticLogDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/ChangePasswordRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/ChangePasswordRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/ChangeUserNameRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/ChangeUserNameRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/ClaimDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/ClaimDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/ConfirmEmailRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/ConfirmEmailRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/ConfirmPhoneRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/ConfirmPhoneRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/EditUserRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/EditUserRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/IdentityRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/IdentityRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/RefreshTokenRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/RefreshTokenRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/ResetPasswordRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/ResetPasswordRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/RoleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/RoleDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/SendEmailTokenRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/SendEmailTokenRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/SendNotificationToRoleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/SendNotificationToRoleDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/SendPhoneTokenRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/SendPhoneTokenRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/SendResetPasswordTokenRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/SendResetPasswordTokenRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/SignInRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/SignInRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/SignInResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/SignInResponseDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/SignUpRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/SignUpRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/TokenResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/TokenResponseDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/TwoFactorAuthRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/TwoFactorAuthRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/TwoFactorAuthResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/TwoFactorAuthResponseDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/UpdateUserSessionRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/UpdateUserSessionRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/UserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/UserDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/UserRoleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/UserRoleDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/UserSessionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/UserSessionDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/VerifyWebAuthnAndSignInRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/VerifyWebAuthnAndSignInRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Identity/WebAuthnAssertionOptionsRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Identity/WebAuthnAssertionOptionsRequestDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/IdentityJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/IdentityJsonContext.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/PagedResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/PagedResultDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Statistics/GitHubStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Statistics/GitHubStats.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Dtos/Statistics/NugetStatsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Dtos/Statistics/NugetStatsDto.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/AccountProviderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/AccountProviderType.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/AttachmentKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/AttachmentKind.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/CrystaTaskStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/CrystaTaskStatus.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/DocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/DocumentType.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/Gender.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/PromptKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/PromptKind.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/SyncModuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/SyncModuleType.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/SyncStatus.cs: -------------------------------------------------------------------------------- 1 | namespace CrystaLearn.Shared.Enums; 2 | 3 | public enum SyncStatus { Success, Failed, Deleted } 4 | -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/UserSessionNotificationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/UserSessionNotificationStatus.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Enums/VerificationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Enums/VerificationStatus.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/AppProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/AppProblemDetails.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/BadRequestException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/ClientNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/ClientNotSupportedException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/ConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/ConflictException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/DomainLogicException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/DomainLogicException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/ErrorResourcePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/ErrorResourcePayload.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/ForbiddenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/ForbiddenException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/KnownException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/KnownException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/ResourceNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/ResourceNotFoundException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/ResourceValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/ResourceValidationException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/RestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/RestException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/ServerConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/ServerConnectionException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/TooManyRequestsExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/TooManyRequestsExceptions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/UnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/UnauthorizedException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Exceptions/UnknownException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Exceptions/UnknownException.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/ByteArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/ByteArrayExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/IAuthorizationServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/IAuthorizationServiceExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/ICollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/ICollectionExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/IConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/IConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/ISharedServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/ISharedServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/JsonSeralizerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/JsonSeralizerExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/TupleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/TupleExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Extensions/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Extensions/UriExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Mapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Mapper.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/PageUrls.Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/PageUrls.Identity.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/PageUrls.SettingsSections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/PageUrls.SettingsSections.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/PageUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/PageUrls.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Resources/AppStrings.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Resources/AppStrings.fa.resx -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Resources/AppStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Resources/AppStrings.resx -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Resources/AppStrings.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Resources/AppStrings.sv.resx -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Resources/IdentityStrings.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Resources/IdentityStrings.fa.resx -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Resources/IdentityStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Resources/IdentityStrings.resx -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Resources/IdentityStrings.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Resources/IdentityStrings.sv.resx -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Resources/StringLocalizerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Resources/StringLocalizerProvider.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AppClaimTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AppClaimTypes.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AppEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AppEnvironment.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AppFeatureRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AppFeatureRequirement.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AppFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AppFeatures.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AppPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AppPlatform.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AppQueryStringCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AppQueryStringCollection.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AppRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AppRoles.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/AuthPolicies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/AuthPolicies.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/Contracts/IDateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/Contracts/IDateTimeProvider.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/Contracts/IPrerenderStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/Contracts/IPrerenderStateService.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/CultureInfoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/CultureInfoManager.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/DateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/DateTimeProvider.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/GitHubUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/GitHubUtil.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/SharedChatProcessMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/SharedChatProcessMessages.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/SharedExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/SharedExceptionHandler.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Services/SharedPubSubMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Services/SharedPubSubMessages.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/SharedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/SharedSettings.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Urls.Crysta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Urls.Crysta.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Urls.Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Urls.Identity.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Urls.SettingsSections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Urls.SettingsSections.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/Urls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/Urls.cs -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/appsettings.Development.json -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/appsettings.Production.json -------------------------------------------------------------------------------- /src/Shared/CrystaLearn.Shared/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Shared/CrystaLearn.Shared/appsettings.json -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/.runsettings -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/AppTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/AppTestServer.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/CrystaLearn.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/CrystaLearn.Test.csproj -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/Extensions/PlaywrightVideoRecordingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/Extensions/PlaywrightVideoRecordingExtensions.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/Extensions/WebApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/Extensions/WebApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/IdentityApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/IdentityApiTests.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/IdentityPagesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/IdentityPagesTests.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/Services/TestAuthTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/Services/TestAuthTokenProvider.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/Services/TestStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/Services/TestStorageService.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/TestData.cs -------------------------------------------------------------------------------- /src/Test/CrystaLearn.Test/TestsInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-internship/cs-system/HEAD/src/Test/CrystaLearn.Test/TestsInitializer.cs --------------------------------------------------------------------------------