├── .gitattributes ├── .gitignore ├── FreeCourse.Gateway ├── DelegateHandlers │ └── TokenExhangeDelegateHandler.cs ├── Dockerfile ├── FreeCourse.Gateway.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── configuration.development.json └── configuration.production.json ├── Frontends └── FreeCourse.Web │ ├── Controllers │ ├── AuthController.cs │ ├── BasketController.cs │ ├── CoursesController.cs │ ├── HomeController.cs │ ├── OrderController.cs │ └── UserController.cs │ ├── Dockerfile │ ├── Exceptions │ └── UnAuthorizeException.cs │ ├── Extensions │ └── ServiceExtension.cs │ ├── FreeCourse.Web.csproj │ ├── Handler │ ├── ClientCredentialTokenHandler.cs │ └── ResourceOwnerPasswordTokenHandler.cs │ ├── Helpers │ └── PhotoHelper.cs │ ├── Models │ ├── Baskets │ │ ├── BasketItemViewModel.cs │ │ └── BasketViewModel.cs │ ├── Catalogs │ │ ├── CategoryViewModel.cs │ │ ├── CourseCreateInput.cs │ │ ├── CourseUpdateInput.cs │ │ ├── CourseViewModel.cs │ │ └── FeatureViewModel.cs │ ├── ClientSettings.cs │ ├── Discounts │ │ ├── DiscountApplyInput.cs │ │ └── DiscountViewModel.cs │ ├── ErrorViewModel.cs │ ├── FakePayments │ │ └── PaymentInfoInput.cs │ ├── Orders │ │ ├── AddressCreateInput.cs │ │ ├── CheckoutInfoInput.cs │ │ ├── OrderCreateInput.cs │ │ ├── OrderCreatedViewModel.cs │ │ ├── OrderItemCreateInput.cs │ │ ├── OrderItemViewModel.cs │ │ ├── OrderSuspendViewModel.cs │ │ └── OrderViewModel.cs │ ├── PhotoStocks │ │ └── PhotoViewModel.cs │ ├── ServiceApiSettings.cs │ ├── SignInInput.cs │ └── UserViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── BasketService.cs │ ├── CatalogService.cs │ ├── ClientCredentialTokenService.cs │ ├── DiscountService.cs │ ├── IdentityService.cs │ ├── Interfaces │ │ ├── IBasketService.cs │ │ ├── ICatalogService.cs │ │ ├── IClientCredentialTokenService.cs │ │ ├── IDiscountService.cs │ │ ├── IIdentityService.cs │ │ ├── IOrderService.cs │ │ ├── IPaymentService.cs │ │ ├── IPhotoStockService.cs │ │ └── IUserService.cs │ ├── OrderService.cs │ ├── PaymentService.cs │ ├── PhotoStockService.cs │ └── UserService.cs │ ├── Startup.cs │ ├── Validators │ ├── CourseCreateInputValidator.cs │ ├── CourseUpdateInputValidator.cs │ └── DiscountApplyInputValidator.cs │ ├── Views │ ├── Auth │ │ └── SignIn.cshtml │ ├── Basket │ │ └── Index.cshtml │ ├── Courses │ │ ├── Create.cshtml │ │ ├── Index.cshtml │ │ └── Update.cshtml │ ├── Home │ │ ├── Detail.cshtml │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Order │ │ ├── Checkout.cshtml │ │ ├── CheckoutHistory.cshtml │ │ └── SuccessfulCheckout.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── User │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap-5.0 │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── IdentityServer └── FreeCourse.IdentityServer │ ├── Config.cs │ ├── Controllers │ └── UserController.cs │ ├── Data │ └── ApplicationDbContext.cs │ ├── Dockerfile │ ├── Dtos │ └── SignupDto.cs │ ├── FreeCourse.IdentityServer.csproj │ ├── Migrations │ ├── 20210325035501_initial.Designer.cs │ ├── 20210325035501_initial.cs │ └── ApplicationDbContextModelSnapshot.cs │ ├── Models │ └── ApplicationUser.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Quickstart │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── ExternalController.cs │ │ ├── ExternalProvider.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ ├── LogoutViewModel.cs │ │ └── RedirectViewModel.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Device │ │ ├── DeviceAuthorizationInputModel.cs │ │ ├── DeviceAuthorizationViewModel.cs │ │ └── DeviceController.cs │ ├── Diagnostics │ │ ├── DiagnosticsController.cs │ │ └── DiagnosticsViewModel.cs │ ├── Extensions.cs │ ├── Grants │ │ ├── GrantsController.cs │ │ └── GrantsViewModel.cs │ ├── Home │ │ ├── ErrorViewModel.cs │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ └── TestUsers.cs │ ├── SeedData.cs │ ├── Services │ ├── IdentityResourceOwnerPasswordValidator.cs │ └── TokenExchangeExtensionGrantValidator.cs │ ├── Startup.cs │ ├── Views │ ├── Account │ │ ├── AccessDenied.cshtml │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ └── Logout.cshtml │ ├── Consent │ │ └── Index.cshtml │ ├── Device │ │ ├── Success.cshtml │ │ ├── UserCodeCapture.cshtml │ │ └── UserCodeConfirmation.cshtml │ ├── Diagnostics │ │ └── Index.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Redirect.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Nav.cshtml │ │ ├── _ScopeListItem.cshtml │ │ └── _ValidationSummary.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── tempkey.jwk │ ├── updateUI.ps1 │ └── wwwroot │ ├── css │ ├── site.css │ ├── site.min.css │ └── site.scss │ ├── favicon.ico │ ├── icon.jpg │ ├── icon.png │ ├── js │ ├── signin-redirect.js │ └── signout-redirect.js │ └── lib │ ├── bootstrap │ ├── README.md │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ └── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _deprecate.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ ├── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ │ └── vendor │ │ └── _rfs.scss │ └── jquery │ ├── LICENSE.txt │ ├── README.md │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── Ports.txt ├── README.md ├── Services ├── Basket │ └── FreeCourse.Services.Basket │ │ ├── Controllers │ │ └── BasketsController.cs │ │ ├── Dockerfile │ │ ├── Dtos │ │ ├── BasketDto.cs │ │ └── BasketItemDto.cs │ │ ├── FreeCourse.Services.Basket.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── BasketService.cs │ │ ├── IBasketService.cs │ │ └── RedisService.cs │ │ ├── Settings │ │ └── RedisSettings.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── Catalog │ └── FreeCourse.Services.Catalog │ │ ├── Controllers │ │ ├── CategoriesController.cs │ │ └── CoursesController.cs │ │ ├── Dockerfile │ │ ├── Dtos │ │ ├── CategoryDto.cs │ │ ├── CourseCreateDto.cs │ │ ├── CourseDto.cs │ │ ├── CourseUpdateDto.cs │ │ └── FeatureDto.cs │ │ ├── FreeCourse.Services.Catalog.csproj │ │ ├── Mapping │ │ └── GeneralMapping.cs │ │ ├── Models │ │ ├── Category.cs │ │ ├── Course.cs │ │ └── Feature.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── CategoryService.cs │ │ ├── CourseService.cs │ │ ├── ICategoryService.cs │ │ └── ICourseService.cs │ │ ├── Settings │ │ ├── DatabaseSettings.cs │ │ └── IDatabaseSettings.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── Discount │ └── FreeCourse.Services.Discount │ │ ├── Controllers │ │ └── DiscountsController.cs │ │ ├── Dockerfile │ │ ├── FreeCourse.Services.Discount.csproj │ │ ├── Models │ │ └── Discount.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Scripts │ │ └── dbcount sql scripts.txt │ │ ├── Services │ │ ├── DiscountService.cs │ │ └── IDiscountService.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── FakePayment │ └── FreeCourse.Services.FakePayment │ │ ├── Controllers │ │ └── FakePaymentsController.cs │ │ ├── Dockerfile │ │ ├── FreeCourse.Services.FakePayment.csproj │ │ ├── Models │ │ ├── OrderDto.cs │ │ └── PaymentDto.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── Order │ ├── FreeCourse.Services.Order.API │ │ ├── Controllers │ │ │ └── OrdersController.cs │ │ ├── Dockerfile │ │ ├── FreeCourse.Services.Order.API.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── FreeCourse.Services.Order.Application │ │ ├── Commands │ │ │ └── CreateOrderCommand.cs │ │ ├── Consumers │ │ │ ├── CourseNameChangedEventConsumer.cs │ │ │ └── CreateOrderMessageCommandConsumer.cs │ │ ├── Dtos │ │ │ ├── AddressDto.cs │ │ │ ├── CreatedOrderDto.cs │ │ │ ├── OrderDto.cs │ │ │ └── OrderItemDto.cs │ │ ├── FreeCourse.Services.Order.Application.csproj │ │ ├── Handlers │ │ │ ├── CreateOrderCommandHandler.cs │ │ │ └── GetOrdersByUserIdQueryHandler.cs │ │ ├── Mapping │ │ │ ├── CustomMapping.cs │ │ │ └── ObjectMapper.cs │ │ └── Queries │ │ │ └── GetOrdersByUserIdQuery.cs │ ├── FreeCourse.Services.Order.Domain.Core │ │ ├── Entity.cs │ │ ├── FreeCourse.Services.Order.Domain.Core.csproj │ │ ├── IAggregateRoot.cs │ │ └── ValueObject.cs │ ├── FreeCourse.Services.Order.Domain │ │ ├── FreeCourse.Services.Order.Domain.csproj │ │ └── OrderAggregate │ │ │ ├── Address.cs │ │ │ ├── Order.cs │ │ │ └── OrderItem.cs │ └── FreeCourse.Services.Order.Infrastructure │ │ ├── FreeCourse.Services.Order.Infrastructure.csproj │ │ ├── Migrations │ │ ├── 20210331200152_initial.Designer.cs │ │ ├── 20210331200152_initial.cs │ │ └── OrderDbContextModelSnapshot.cs │ │ └── OrderDbContext.cs └── PhotoStock │ └── FreeCourse.Services.PhotoStock │ ├── Controllers │ └── PhotosController.cs │ ├── Dockerfile │ ├── Dtos │ └── PhotoDto.cs │ ├── FreeCourse.Services.PhotoStock.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ └── photos │ ├── 2bc2b067-d1e2-4639-ae32-0cd142bba66c.jpg │ ├── 3cf90dbe-8bc3-4374-ae4a-7093cad27c03.jpg │ ├── 85d74245-f5b6-4bd5-bbe8-cf012f7c8b14.jpg │ ├── 88f39895-8e39-42a4-b7ab-ec0e3807fdb5.jpg │ └── fde450f6-3b8a-4752-b3e4-6e9c2cc88f08.jpg ├── Shared └── FreeCourse.Shared │ ├── ControllerBases │ └── CustomBaseController.cs │ ├── Dtos │ ├── ErrorDto.cs │ ├── NoContent.cs │ └── Response.cs │ ├── FreeCourse.Shared.csproj │ ├── Messages │ ├── CourseNameChangedEvent.cs │ └── CreateOrderMessageCommand.cs │ └── Services │ ├── ISharedIdentityService.cs │ └── SharedIdentityService.cs ├── UdemyMicroservices.sln ├── docker-compose.override.yml └── docker-compose.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/.gitignore -------------------------------------------------------------------------------- /FreeCourse.Gateway/DelegateHandlers/TokenExhangeDelegateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/DelegateHandlers/TokenExhangeDelegateHandler.cs -------------------------------------------------------------------------------- /FreeCourse.Gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/Dockerfile -------------------------------------------------------------------------------- /FreeCourse.Gateway/FreeCourse.Gateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/FreeCourse.Gateway.csproj -------------------------------------------------------------------------------- /FreeCourse.Gateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/Program.cs -------------------------------------------------------------------------------- /FreeCourse.Gateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /FreeCourse.Gateway/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/Startup.cs -------------------------------------------------------------------------------- /FreeCourse.Gateway/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/appsettings.Development.json -------------------------------------------------------------------------------- /FreeCourse.Gateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/appsettings.json -------------------------------------------------------------------------------- /FreeCourse.Gateway/configuration.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/configuration.development.json -------------------------------------------------------------------------------- /FreeCourse.Gateway/configuration.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/FreeCourse.Gateway/configuration.production.json -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Controllers/AuthController.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Controllers/BasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Controllers/BasketController.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Controllers/OrderController.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Controllers/UserController.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Dockerfile -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Exceptions/UnAuthorizeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Exceptions/UnAuthorizeException.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Extensions/ServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Extensions/ServiceExtension.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/FreeCourse.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/FreeCourse.Web.csproj -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Handler/ClientCredentialTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Handler/ClientCredentialTokenHandler.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Handler/ResourceOwnerPasswordTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Handler/ResourceOwnerPasswordTokenHandler.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Helpers/PhotoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Helpers/PhotoHelper.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Baskets/BasketItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Baskets/BasketItemViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Baskets/BasketViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Baskets/BasketViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Catalogs/CategoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Catalogs/CategoryViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Catalogs/CourseCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Catalogs/CourseCreateInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Catalogs/CourseUpdateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Catalogs/CourseUpdateInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Catalogs/CourseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Catalogs/CourseViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Catalogs/FeatureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Catalogs/FeatureViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/ClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/ClientSettings.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Discounts/DiscountApplyInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Discounts/DiscountApplyInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Discounts/DiscountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Discounts/DiscountViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/FakePayments/PaymentInfoInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/FakePayments/PaymentInfoInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/AddressCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/AddressCreateInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/CheckoutInfoInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/CheckoutInfoInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/OrderCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/OrderCreateInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/OrderCreatedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/OrderCreatedViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/OrderItemCreateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/OrderItemCreateInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/OrderItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/OrderItemViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/OrderSuspendViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/OrderSuspendViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/Orders/OrderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/Orders/OrderViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/PhotoStocks/PhotoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/PhotoStocks/PhotoViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/ServiceApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/ServiceApiSettings.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/SignInInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/SignInInput.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Models/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Models/UserViewModel.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Program.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/BasketService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/CatalogService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/ClientCredentialTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/ClientCredentialTokenService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/DiscountService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/IdentityService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IBasketService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/ICatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/ICatalogService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IClientCredentialTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IClientCredentialTokenService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IDiscountService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IIdentityService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IOrderService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IPaymentService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IPhotoStockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IPhotoStockService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/Interfaces/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/Interfaces/IUserService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/OrderService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/PaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/PaymentService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/PhotoStockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/PhotoStockService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Services/UserService.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Startup.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Validators/CourseCreateInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Validators/CourseCreateInputValidator.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Validators/CourseUpdateInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Validators/CourseUpdateInputValidator.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Validators/DiscountApplyInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Validators/DiscountApplyInputValidator.cs -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Auth/SignIn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Auth/SignIn.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Basket/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Basket/Index.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Courses/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Courses/Create.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Courses/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Courses/Index.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Courses/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Courses/Update.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Home/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Home/Detail.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Order/Checkout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Order/Checkout.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Order/CheckoutHistory.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Order/CheckoutHistory.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Order/SuccessfulCheckout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Order/SuccessfulCheckout.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/User/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/User/Index.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/appsettings.Development.json -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/appsettings.json -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap-5.0/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Frontends/FreeCourse.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Frontends/FreeCourse.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Config.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Controllers/UserController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Dockerfile -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Dtos/SignupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Dtos/SignupDto.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/FreeCourse.IdentityServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/FreeCourse.IdentityServer.csproj -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Migrations/20210325035501_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Migrations/20210325035501_initial.Designer.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Migrations/20210325035501_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Migrations/20210325035501_initial.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Program.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/ExternalController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Device/DeviceAuthorizationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Device/DeviceAuthorizationInputModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Device/DeviceAuthorizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Device/DeviceAuthorizationViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Device/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Device/DeviceController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Extensions.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/SeedData.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Services/IdentityResourceOwnerPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Services/IdentityResourceOwnerPasswordValidator.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Services/TokenExchangeExtensionGrantValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Services/TokenExchangeExtensionGrantValidator.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Startup.cs -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/appsettings.json -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/tempkey.jwk -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/updateUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/updateUI.ps1 -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/css/site.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/css/site.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/icon.jpg -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/icon.png -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_background.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_borders.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_display.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_position.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/IdentityServer/FreeCourse.IdentityServer/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /Ports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Ports.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/README.md -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Controllers/BasketsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Controllers/BasketsController.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Dockerfile -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Dtos/BasketDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Dtos/BasketDto.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Dtos/BasketItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Dtos/BasketItemDto.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/FreeCourse.Services.Basket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/FreeCourse.Services.Basket.csproj -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Program.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Properties/launchSettings.json -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Services/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Services/BasketService.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Services/IBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Services/IBasketService.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Services/RedisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Services/RedisService.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Settings/RedisSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Settings/RedisSettings.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/Startup.cs -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/appsettings.Development.json -------------------------------------------------------------------------------- /Services/Basket/FreeCourse.Services.Basket/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Basket/FreeCourse.Services.Basket/appsettings.json -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Dockerfile -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Dtos/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Dtos/CategoryDto.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Dtos/CourseCreateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Dtos/CourseCreateDto.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Dtos/CourseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Dtos/CourseDto.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Dtos/CourseUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Dtos/CourseUpdateDto.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Dtos/FeatureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Dtos/FeatureDto.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/FreeCourse.Services.Catalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/FreeCourse.Services.Catalog.csproj -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Mapping/GeneralMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Mapping/GeneralMapping.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Models/Category.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Models/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Models/Course.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Models/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Models/Feature.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Program.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Properties/launchSettings.json -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Services/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Services/CategoryService.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Services/CourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Services/CourseService.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Services/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Services/ICategoryService.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Services/ICourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Services/ICourseService.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Settings/DatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Settings/DatabaseSettings.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Settings/IDatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Settings/IDatabaseSettings.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/Startup.cs -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/appsettings.Development.json -------------------------------------------------------------------------------- /Services/Catalog/FreeCourse.Services.Catalog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Catalog/FreeCourse.Services.Catalog/appsettings.json -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Controllers/DiscountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Controllers/DiscountsController.cs -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Dockerfile -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/FreeCourse.Services.Discount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/FreeCourse.Services.Discount.csproj -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Models/Discount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Models/Discount.cs -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Program.cs -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Properties/launchSettings.json -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Scripts/dbcount sql scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Scripts/dbcount sql scripts.txt -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Services/DiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Services/DiscountService.cs -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Services/IDiscountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Services/IDiscountService.cs -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/Startup.cs -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/appsettings.Development.json -------------------------------------------------------------------------------- /Services/Discount/FreeCourse.Services.Discount/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Discount/FreeCourse.Services.Discount/appsettings.json -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/Controllers/FakePaymentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/Controllers/FakePaymentsController.cs -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/Dockerfile -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/FreeCourse.Services.FakePayment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/FreeCourse.Services.FakePayment.csproj -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/Models/OrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/Models/OrderDto.cs -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/Models/PaymentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/Models/PaymentDto.cs -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/Program.cs -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/Properties/launchSettings.json -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/Startup.cs -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/appsettings.Development.json -------------------------------------------------------------------------------- /Services/FakePayment/FreeCourse.Services.FakePayment/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/FakePayment/FreeCourse.Services.FakePayment/appsettings.json -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/Dockerfile -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/FreeCourse.Services.Order.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/FreeCourse.Services.Order.API.csproj -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/Program.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/Startup.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/appsettings.Development.json -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.API/appsettings.json -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Commands/CreateOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Commands/CreateOrderCommand.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Consumers/CourseNameChangedEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Consumers/CourseNameChangedEventConsumer.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Consumers/CreateOrderMessageCommandConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Consumers/CreateOrderMessageCommandConsumer.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Dtos/AddressDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Dtos/AddressDto.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Dtos/CreatedOrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Dtos/CreatedOrderDto.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Dtos/OrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Dtos/OrderDto.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Dtos/OrderItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Dtos/OrderItemDto.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/FreeCourse.Services.Order.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/FreeCourse.Services.Order.Application.csproj -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Handlers/CreateOrderCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Handlers/CreateOrderCommandHandler.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Handlers/GetOrdersByUserIdQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Handlers/GetOrdersByUserIdQueryHandler.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Mapping/CustomMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Mapping/CustomMapping.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Mapping/ObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Mapping/ObjectMapper.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Application/Queries/GetOrdersByUserIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Application/Queries/GetOrdersByUserIdQuery.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain.Core/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain.Core/Entity.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain.Core/FreeCourse.Services.Order.Domain.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain.Core/FreeCourse.Services.Order.Domain.Core.csproj -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain.Core/IAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain.Core/IAggregateRoot.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain.Core/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain.Core/ValueObject.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain/FreeCourse.Services.Order.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain/FreeCourse.Services.Order.Domain.csproj -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain/OrderAggregate/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain/OrderAggregate/Address.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain/OrderAggregate/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain/OrderAggregate/Order.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Domain/OrderAggregate/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Domain/OrderAggregate/OrderItem.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Infrastructure/FreeCourse.Services.Order.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Infrastructure/FreeCourse.Services.Order.Infrastructure.csproj -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Infrastructure/Migrations/20210331200152_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Infrastructure/Migrations/20210331200152_initial.Designer.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Infrastructure/Migrations/20210331200152_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Infrastructure/Migrations/20210331200152_initial.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Infrastructure/Migrations/OrderDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Infrastructure/Migrations/OrderDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Services/Order/FreeCourse.Services.Order.Infrastructure/OrderDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/Order/FreeCourse.Services.Order.Infrastructure/OrderDbContext.cs -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/Controllers/PhotosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/Controllers/PhotosController.cs -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/Dockerfile -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/Dtos/PhotoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/Dtos/PhotoDto.cs -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/FreeCourse.Services.PhotoStock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/FreeCourse.Services.PhotoStock.csproj -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/Program.cs -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/Properties/launchSettings.json -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/Startup.cs -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/appsettings.Development.json -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/appsettings.json -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/2bc2b067-d1e2-4639-ae32-0cd142bba66c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/2bc2b067-d1e2-4639-ae32-0cd142bba66c.jpg -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/3cf90dbe-8bc3-4374-ae4a-7093cad27c03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/3cf90dbe-8bc3-4374-ae4a-7093cad27c03.jpg -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/85d74245-f5b6-4bd5-bbe8-cf012f7c8b14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/85d74245-f5b6-4bd5-bbe8-cf012f7c8b14.jpg -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/88f39895-8e39-42a4-b7ab-ec0e3807fdb5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/88f39895-8e39-42a4-b7ab-ec0e3807fdb5.jpg -------------------------------------------------------------------------------- /Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/fde450f6-3b8a-4752-b3e4-6e9c2cc88f08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Services/PhotoStock/FreeCourse.Services.PhotoStock/wwwroot/photos/fde450f6-3b8a-4752-b3e4-6e9c2cc88f08.jpg -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/ControllerBases/CustomBaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/ControllerBases/CustomBaseController.cs -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/Dtos/ErrorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/Dtos/ErrorDto.cs -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/Dtos/NoContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/Dtos/NoContent.cs -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/Dtos/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/Dtos/Response.cs -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/FreeCourse.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/FreeCourse.Shared.csproj -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/Messages/CourseNameChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/Messages/CourseNameChangedEvent.cs -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/Messages/CreateOrderMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/Messages/CreateOrderMessageCommand.cs -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/Services/ISharedIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/Services/ISharedIdentityService.cs -------------------------------------------------------------------------------- /Shared/FreeCourse.Shared/Services/SharedIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/Shared/FreeCourse.Shared/Services/SharedIdentityService.cs -------------------------------------------------------------------------------- /UdemyMicroservices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/UdemyMicroservices.sln -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyMicroservices/HEAD/docker-compose.yml --------------------------------------------------------------------------------