├── .dockerignore ├── .env ├── .gitignore ├── README.md ├── SECURITY.md ├── client ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json ├── .dockerignore ├── .env ├── .gitignore ├── Dockerfile ├── README.md ├── nginx.conf ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── PrivateRoute.js │ ├── configs │ │ ├── authorization.js │ │ ├── axios.js │ │ ├── origins.js │ │ └── web-socket.js │ ├── index.js │ ├── logo.svg │ └── pages │ │ ├── account │ │ ├── AuthProvider.js │ │ ├── AuthService.js │ │ ├── Callback.js │ │ ├── Login.js │ │ ├── Logout.js │ │ ├── LogoutCallback.js │ │ ├── Register.js │ │ └── SilentRenew.js │ │ ├── base │ │ ├── Layout.js │ │ └── ProfileMenu.js │ │ ├── basket │ │ ├── Basket.js │ │ ├── BasketContext.js │ │ └── BasketItem.js │ │ ├── order │ │ ├── Order.js │ │ ├── OrderItem.js │ │ └── OrderService.js │ │ └── product │ │ ├── Product.js │ │ ├── ProductItem.js │ │ └── ProductService.js └── yarn.lock ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml ├── eShopZero.sln ├── gateway └── Gateway │ ├── Controllers │ ├── HomeController.cs │ └── OrderController.cs │ ├── Dockerfile │ ├── Extensions │ ├── ServiceCollectionExtensions.cs │ ├── ServiceExtensions.cs │ └── SwaggerExtensions.cs │ ├── Filters │ └── AuthorizeCheckOperationFilter.cs │ ├── Gateway - Backup.csproj │ ├── Gateway.csproj │ ├── Models │ ├── OrderModel.cs │ └── ProductModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── IOrderService.cs │ ├── IProductService.cs │ ├── OrderService.cs │ └── ProductService.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── configuration.Development.json │ └── ocelot.json ├── img ├── client-screenshot-1.png ├── client-screenshot-2.png ├── client-screenshot-3.png ├── create-order-screenshot.png ├── gateway-screenshot.png ├── healtcheck-screenshot.png ├── identity-screenshot.png ├── microservice-architecture.png ├── order-api-screenshot.png ├── portainer-screenshot.png ├── product-api-screenshot.png ├── rabbitmq-screenshot.png ├── redis-screenshot.png ├── seq-screenhot.png └── web-client-screenshot.png ├── lib ├── core │ └── Zero.Core │ │ ├── Audition │ │ ├── CreationAuditedEntityBase.cs │ │ ├── ICreationAudited.cs │ │ └── IHasCreationTime.cs │ │ ├── Domain │ │ ├── IAggregateRoot.cs │ │ └── ValueObject.cs │ │ ├── Entity │ │ ├── EntityBase.cs │ │ └── IEntity.cs │ │ ├── Extensions │ │ └── CacheExtensions.cs │ │ ├── Repositories │ │ ├── EntityFramework │ │ │ ├── EntityFrameworkRepository.cs │ │ │ └── EntityFrameworkUowBase.cs │ │ ├── IRepository.cs │ │ └── RepositoryBase.cs │ │ ├── Sessions │ │ ├── ISession.cs │ │ ├── Token.cs │ │ └── ZeroSession.cs │ │ ├── UnitOfWork │ │ └── IUnitofWork.cs │ │ └── Zero.Core.csproj └── eventbus │ ├── Zero.EventBus │ ├── Abstractions │ │ ├── IDynamicIntegrationEventHandler.cs │ │ ├── IEventBus.cs │ │ ├── IIntegrationEventHandler.cs │ │ └── INotify.cs │ ├── Events │ │ └── IntegrationEvent.cs │ ├── Extensions │ │ ├── GenericTypeExtensions.cs │ │ └── MediatorExtensions.cs │ ├── IEventBusSubscriptionsManager.cs │ ├── InMemoryEventBusSubscriptionsManager.cs │ ├── SubscriptionInfo.cs │ └── Zero.EventBus.csproj │ ├── Zero.Eventbus.RabbitMQ │ ├── DefaultRabbitMQPersistentConnection.cs │ ├── IRabbitMQPersistentConnection.cs │ ├── RabbitMqEventBus.cs │ ├── ServiceProviderExtensions.cs │ └── Zero.Eventbus.RabbitMQ.csproj │ └── Zero.Eventlog │ ├── EventLogContext.cs │ ├── EventLogEntry.cs │ ├── EventLogService.cs │ ├── EventState.cs │ ├── IEventLogService.cs │ ├── ServiceProviderExtensions.cs │ └── Zero.Eventlog.csproj └── services ├── identity └── Identity.Api │ ├── AppSettings.cs │ ├── Certificate │ └── Certificate.cs │ ├── Configuration │ └── Config.cs │ ├── Controllers │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── ExternalController.cs │ │ └── ExternalProvider.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ └── ConsentOptions.cs │ ├── Device │ │ └── DeviceController.cs │ ├── Diagnostics │ │ └── DiagnosticsController.cs │ ├── Extensions.cs │ ├── Grants │ │ └── GrantsController.cs │ ├── Home │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ └── TestUsers.cs │ ├── Data │ ├── ApplicationDbContext.cs │ ├── Factories │ │ ├── ApplicationDbContextFactory.cs │ │ ├── ConfigurationDbContextFactory.cs │ │ └── PersistedGrantDbContextFactory.cs │ ├── Migrations │ │ ├── 20210118214717_InitialApplicationMigration.Designer.cs │ │ ├── 20210118214717_InitialApplicationMigration.cs │ │ ├── ApplicationDbContextModelSnapshot.cs │ │ ├── Configuration │ │ │ ├── 20210118214748_ınitialConfigurationMigration.Designer.cs │ │ │ ├── 20210118214748_ınitialConfigurationMigration.cs │ │ │ └── ConfigurationDbContextModelSnapshot.cs │ │ └── PersistedGrant │ │ │ ├── 20210118214901_InitialPersistedGrantMigration.Designer.cs │ │ │ ├── 20210118214901_InitialPersistedGrantMigration.cs │ │ │ └── PersistedGrantDbContextModelSnapshot.cs │ └── Seed │ │ ├── ApplicationDbContextSeed.cs │ │ └── ConfigurationDbContextSeed.cs │ ├── Devspaces │ ├── DevspacesRedirectUriValidator.cs │ └── IdentityDevspacesBuilderExtensions.cs │ ├── Dockerfile │ ├── Dockerfile.original │ ├── Entities │ ├── ApplicationUser.cs │ ├── Role.cs │ ├── RoleClaim.cs │ ├── UserClaim.cs │ ├── UserLogin.cs │ ├── UserRole.cs │ └── UserToken.cs │ ├── Extensions │ ├── LinqSelectExtensions.cs │ ├── StringExtensions.cs │ └── WebHostExtensions.cs │ ├── Identity.Api.csproj │ ├── Models │ ├── Account │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ ├── LogoutViewModel.cs │ │ └── RedirectViewModel.cs │ ├── Consent │ │ ├── ConsentInputModel.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Device │ │ ├── DeviceAuthorizationInputModel.cs │ │ └── DeviceAuthorizationViewModel.cs │ ├── Diagnostics │ │ └── DiagnosticsViewModel.cs │ ├── ErrorViewModel.cs │ └── Grants │ │ └── GrantsViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Setup │ └── Users.csv │ ├── 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 │ └── wwwroot │ ├── css │ ├── main.css │ ├── site.css │ ├── site.min.css │ ├── site.scss │ └── vendor │ │ ├── baguetteBox.min.css │ │ ├── bootstrap-datepicker3.min.css │ │ ├── bootstrap-float-label.min.css │ │ ├── bootstrap-stars.css │ │ ├── bootstrap-tagsinput.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.rtl.only.min.css │ │ ├── component-custom-switch.min.css │ │ ├── cropper.min.css │ │ ├── dataTables.bootstrap4.min.css │ │ ├── datatables.responsive.bootstrap4.min.css │ │ ├── dropzone.min.css │ │ ├── fullcalendar.min.css │ │ ├── glide.core.min.css │ │ ├── jquery.contextMenu.min.css │ │ ├── jquery.dataTables.min.css │ │ ├── nouislider.min.css │ │ ├── owl.carousel.min.css │ │ ├── perfect-scrollbar.css │ │ ├── quill.bubble.css │ │ ├── quill.snow.css │ │ ├── select2-bootstrap.min.css │ │ ├── select2.min.css │ │ ├── slick.css │ │ ├── smart_wizard.min.css │ │ └── video-js.css │ ├── favicon.ico │ ├── font │ ├── iconsmind-s │ │ ├── README.txt │ │ ├── config.json │ │ ├── css │ │ │ ├── animation.css │ │ │ ├── iconsminds-codes.css │ │ │ ├── iconsminds-embedded.css │ │ │ ├── iconsminds-ie7-codes.css │ │ │ ├── iconsminds-ie7.css │ │ │ └── iconsminds.css │ │ ├── demo.html │ │ └── font │ │ │ ├── iconsminds.eot │ │ │ ├── iconsminds.svg │ │ │ ├── iconsminds.ttf │ │ │ ├── iconsminds.woff │ │ │ └── iconsminds.woff2 │ └── simple-line-icons │ │ ├── LICENSE.md │ │ ├── css │ │ └── simple-line-icons.css │ │ └── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ └── Simple-Line-Icons.woff2 │ ├── icon.jpg │ ├── icon.png │ ├── js │ ├── dore-plugins │ │ └── select.from.library.js │ ├── dore.script.js │ ├── dore.scripts.landingpage.js │ ├── scripts.js │ ├── scripts.single.theme.js │ ├── signin-redirect.js │ ├── signout-redirect.js │ └── vendor │ │ ├── Chart.bundle.min.js │ │ ├── Sortable.js │ │ ├── baguetteBox.min.js │ │ ├── bootstrap-datepicker.js │ │ ├── bootstrap-notify.min.js │ │ ├── bootstrap-tagsinput.min.js │ │ ├── bootstrap.bundle.min.js │ │ ├── chartjs-plugin-datalabels.js │ │ ├── ckeditor5-build-classic │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── ckeditor.js │ │ ├── ckeditor.js.map │ │ └── translations │ │ │ ├── ar.js │ │ │ ├── ast.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── countdown.min.js │ │ ├── cropper.min.js │ │ ├── datatables.min.js │ │ ├── dropzone.min.js │ │ ├── fullcalendar.min.js │ │ ├── glide.min.js │ │ ├── jquery-3.3.1.min.js │ │ ├── jquery.autoellipsis.js │ │ ├── jquery.barrating.min.js │ │ ├── jquery.contextMenu.min.js │ │ ├── jquery.smartWizard.min.js │ │ ├── jquery.validate │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_az.js │ │ │ ├── messages_az.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_sd.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_ur.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_it.js │ │ │ ├── methods_it.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ │ ├── landing-page │ │ ├── headroom.min.js │ │ ├── jQuery.headroom.js │ │ ├── jquery.autoellipsis.js │ │ └── jquery.scrollTo.min.js │ │ ├── moment.min.js │ │ ├── mousetrap.js │ │ ├── mousetrap.min.js │ │ ├── nouislider.min.js │ │ ├── owl.carousel.min.js │ │ ├── perfect-scrollbar.min.js │ │ ├── progressbar.min.js │ │ ├── quill.min.js │ │ ├── select2.full.js │ │ ├── slick.min.js │ │ ├── typeahead.bundle.js │ │ ├── video.js │ │ └── videojs-youtube.min.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 ├── order ├── Order.Api │ ├── Application │ │ ├── Behaviors │ │ │ ├── LogBehavior.cs │ │ │ └── ValidatorBehavior.cs │ │ ├── Commands │ │ │ ├── CreateOrderCommand.cs │ │ │ └── OrderHandler.cs │ │ ├── IntegrationEvents │ │ │ ├── EventHandlers │ │ │ │ └── RemoveProductStockErrorIntegrationEventHandler.cs │ │ │ └── Events │ │ │ │ ├── RemoveProductStockErrorIntegrationEvent.cs │ │ │ │ └── RemoveProductStockIntegrationEvent.cs │ │ ├── Queries │ │ │ ├── IOrderQuery.cs │ │ │ ├── OrderModel.cs │ │ │ └── OrderQuery.cs │ │ └── Validations │ │ │ └── CreateOrderCommandValidator.cs │ ├── Controllers │ │ ├── HomeController.cs │ │ └── OrderController.cs │ ├── Dockerfile │ ├── Domain │ │ ├── Events │ │ │ └── CreateOrderDomainEvent.cs │ │ ├── Exceptions │ │ │ └── OrderDomainException.cs │ │ ├── Order.cs │ │ └── OrderItem.cs │ ├── Infrastructure │ │ ├── IntegrationEventLogContextFactory.cs │ │ ├── Migrations │ │ │ ├── IntegrationEvent │ │ │ │ ├── 20210425020412_IntegrationEventInitialMigration.Designer.cs │ │ │ │ ├── 20210425020412_IntegrationEventInitialMigration.cs │ │ │ │ └── EventLogContextModelSnapshot.cs │ │ │ └── Order │ │ │ │ ├── 20210425013435_OrderInitialMigration.Designer.cs │ │ │ │ ├── 20210425013435_OrderInitialMigration.cs │ │ │ │ └── OrderDbContextModelSnapshot.cs │ │ ├── OrderDbContext.cs │ │ ├── OrderDbContextFactory.cs │ │ └── OrderUow.cs │ ├── Order.Api.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Web │ │ ├── Extensions │ │ │ ├── RegisterExtensions.cs │ │ │ ├── SubscribtionExtensions.cs │ │ │ ├── SwaggerExtensions.cs │ │ │ └── WebHostExtensions.cs │ │ └── Filters │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ ├── GlobalExceptionFilter.cs │ │ │ └── VersioningFilters.cs │ ├── appsettings.Development.json │ └── appsettings.json └── Order.Test │ ├── Application │ ├── OrderHandlerTest.cs │ ├── OrderQueryTest.cs │ └── RemoveProductStockErrorIntegrationEventHandlerTest.cs │ ├── Domain │ ├── OrderDomainTest.cs │ └── OrderITemTest.cs │ └── Order.Test.csproj └── product ├── Product.Api ├── Application │ ├── Behaviors │ │ ├── LogBehavior.cs │ │ └── ValidatorBehavior.cs │ ├── Hubs │ │ └── ProductHub.cs │ ├── IntegrationEvents │ │ ├── EventHandlers │ │ │ └── RemoveProductStockIntegrationEventHandler.cs │ │ └── Events │ │ │ ├── RemoveProductStockErrorIntegrationEvent.cs │ │ │ └── RemoveProductStockIntegrationEvent.cs │ └── Queries │ │ ├── IProductQuery.cs │ │ ├── ProductCacheKey.cs │ │ ├── ProductModel.cs │ │ └── ProductQuery.cs ├── Controllers │ ├── HomeController.cs │ └── ProductController.cs ├── Dockerfile ├── Domain │ ├── Exceptions │ │ └── ProductDomainException.cs │ ├── Product.cs │ └── ProductType.cs ├── Infrastructure │ ├── IntegrationEventLogContextFactory.cs │ ├── Migrations │ │ ├── IntegrationEvent │ │ │ ├── 20210425022030_IntegrationEventInitialMigration.Designer.cs │ │ │ ├── 20210425022030_IntegrationEventInitialMigration.cs │ │ │ └── EventLogContextModelSnapshot.cs │ │ └── Product │ │ │ ├── 20210425022114_ProductInitialMigration.Designer.cs │ │ │ ├── 20210425022114_ProductInitialMigration.cs │ │ │ └── ProductDbContextModelSnapshot.cs │ ├── ProductDbContext.cs │ ├── ProductDvContextFactory.cs │ ├── ProductUow.cs │ └── Seed │ │ ├── Config.cs │ │ └── ProductDbContextSeed.cs ├── Product.Api.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Web │ ├── Extensions │ │ ├── RegisterExtensions.cs │ │ ├── SubscribtionExtensions.cs │ │ ├── SwaggerExtensions.cs │ │ └── WebHostExtensions.cs │ └── Filters │ │ ├── AuthorizeCheckOperationFilter.cs │ │ ├── GlobalExceptionFilter.cs │ │ └── VersioningFilters.cs ├── appsettings.Development.json └── appsettings.json ├── Product.Test ├── Product.Test.csproj ├── ProductDomainTest.cs ├── ProductQueryTest.cs └── RemoveProductStockIntegrationEventHandlerTest.cs ├── command ├── Product.Command.Api │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Dockerfile │ ├── Product.Command.Api.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json └── Product.Command.Test │ ├── Product.Command.Test.csproj │ └── UnitTest1.cs └── query ├── Product.Query.Api ├── Controllers │ └── WeatherForecastController.cs ├── Dockerfile ├── Product.Query.Api.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json └── Product.Query.Test ├── Product.Query.Test.csproj └── UnitTest1.cs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/SECURITY.md -------------------------------------------------------------------------------- /client/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /client/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/.env -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/README.md -------------------------------------------------------------------------------- /client/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/nginx.conf -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/PrivateRoute.js -------------------------------------------------------------------------------- /client/src/configs/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/configs/authorization.js -------------------------------------------------------------------------------- /client/src/configs/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/configs/axios.js -------------------------------------------------------------------------------- /client/src/configs/origins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/configs/origins.js -------------------------------------------------------------------------------- /client/src/configs/web-socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/configs/web-socket.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/pages/account/AuthProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/AuthProvider.js -------------------------------------------------------------------------------- /client/src/pages/account/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/AuthService.js -------------------------------------------------------------------------------- /client/src/pages/account/Callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/Callback.js -------------------------------------------------------------------------------- /client/src/pages/account/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/Login.js -------------------------------------------------------------------------------- /client/src/pages/account/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/Logout.js -------------------------------------------------------------------------------- /client/src/pages/account/LogoutCallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/LogoutCallback.js -------------------------------------------------------------------------------- /client/src/pages/account/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/Register.js -------------------------------------------------------------------------------- /client/src/pages/account/SilentRenew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/account/SilentRenew.js -------------------------------------------------------------------------------- /client/src/pages/base/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/base/Layout.js -------------------------------------------------------------------------------- /client/src/pages/base/ProfileMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/base/ProfileMenu.js -------------------------------------------------------------------------------- /client/src/pages/basket/Basket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/basket/Basket.js -------------------------------------------------------------------------------- /client/src/pages/basket/BasketContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/basket/BasketContext.js -------------------------------------------------------------------------------- /client/src/pages/basket/BasketItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/basket/BasketItem.js -------------------------------------------------------------------------------- /client/src/pages/order/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/order/Order.js -------------------------------------------------------------------------------- /client/src/pages/order/OrderItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/order/OrderItem.js -------------------------------------------------------------------------------- /client/src/pages/order/OrderService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/order/OrderService.js -------------------------------------------------------------------------------- /client/src/pages/product/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/product/Product.js -------------------------------------------------------------------------------- /client/src/pages/product/ProductItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/product/ProductItem.js -------------------------------------------------------------------------------- /client/src/pages/product/ProductService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/src/pages/product/ProductService.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eShopZero.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/eShopZero.sln -------------------------------------------------------------------------------- /gateway/Gateway/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Controllers/HomeController.cs -------------------------------------------------------------------------------- /gateway/Gateway/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Controllers/OrderController.cs -------------------------------------------------------------------------------- /gateway/Gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Dockerfile -------------------------------------------------------------------------------- /gateway/Gateway/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /gateway/Gateway/Extensions/ServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Extensions/ServiceExtensions.cs -------------------------------------------------------------------------------- /gateway/Gateway/Extensions/SwaggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Extensions/SwaggerExtensions.cs -------------------------------------------------------------------------------- /gateway/Gateway/Filters/AuthorizeCheckOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Filters/AuthorizeCheckOperationFilter.cs -------------------------------------------------------------------------------- /gateway/Gateway/Gateway - Backup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Gateway - Backup.csproj -------------------------------------------------------------------------------- /gateway/Gateway/Gateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Gateway.csproj -------------------------------------------------------------------------------- /gateway/Gateway/Models/OrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Models/OrderModel.cs -------------------------------------------------------------------------------- /gateway/Gateway/Models/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Models/ProductModel.cs -------------------------------------------------------------------------------- /gateway/Gateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Program.cs -------------------------------------------------------------------------------- /gateway/Gateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /gateway/Gateway/Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Services/IOrderService.cs -------------------------------------------------------------------------------- /gateway/Gateway/Services/IProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Services/IProductService.cs -------------------------------------------------------------------------------- /gateway/Gateway/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Services/OrderService.cs -------------------------------------------------------------------------------- /gateway/Gateway/Services/ProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Services/ProductService.cs -------------------------------------------------------------------------------- /gateway/Gateway/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/Startup.cs -------------------------------------------------------------------------------- /gateway/Gateway/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/appsettings.Development.json -------------------------------------------------------------------------------- /gateway/Gateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/appsettings.json -------------------------------------------------------------------------------- /gateway/Gateway/configuration.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/configuration.Development.json -------------------------------------------------------------------------------- /gateway/Gateway/ocelot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/gateway/Gateway/ocelot.json -------------------------------------------------------------------------------- /img/client-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/client-screenshot-1.png -------------------------------------------------------------------------------- /img/client-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/client-screenshot-2.png -------------------------------------------------------------------------------- /img/client-screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/client-screenshot-3.png -------------------------------------------------------------------------------- /img/create-order-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/create-order-screenshot.png -------------------------------------------------------------------------------- /img/gateway-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/gateway-screenshot.png -------------------------------------------------------------------------------- /img/healtcheck-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/healtcheck-screenshot.png -------------------------------------------------------------------------------- /img/identity-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/identity-screenshot.png -------------------------------------------------------------------------------- /img/microservice-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/microservice-architecture.png -------------------------------------------------------------------------------- /img/order-api-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/order-api-screenshot.png -------------------------------------------------------------------------------- /img/portainer-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/portainer-screenshot.png -------------------------------------------------------------------------------- /img/product-api-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/product-api-screenshot.png -------------------------------------------------------------------------------- /img/rabbitmq-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/rabbitmq-screenshot.png -------------------------------------------------------------------------------- /img/redis-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/redis-screenshot.png -------------------------------------------------------------------------------- /img/seq-screenhot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/seq-screenhot.png -------------------------------------------------------------------------------- /img/web-client-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/img/web-client-screenshot.png -------------------------------------------------------------------------------- /lib/core/Zero.Core/Audition/CreationAuditedEntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Audition/CreationAuditedEntityBase.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Audition/ICreationAudited.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Audition/ICreationAudited.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Audition/IHasCreationTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Audition/IHasCreationTime.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Domain/IAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Domain/IAggregateRoot.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Domain/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Domain/ValueObject.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Entity/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Entity/EntityBase.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Entity/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Entity/IEntity.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Extensions/CacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Extensions/CacheExtensions.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Repositories/EntityFramework/EntityFrameworkRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Repositories/EntityFramework/EntityFrameworkRepository.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Repositories/EntityFramework/EntityFrameworkUowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Repositories/EntityFramework/EntityFrameworkUowBase.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Repositories/IRepository.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Repositories/RepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Repositories/RepositoryBase.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Sessions/ISession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Sessions/ISession.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Sessions/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Sessions/Token.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Sessions/ZeroSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Sessions/ZeroSession.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/UnitOfWork/IUnitofWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/UnitOfWork/IUnitofWork.cs -------------------------------------------------------------------------------- /lib/core/Zero.Core/Zero.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/core/Zero.Core/Zero.Core.csproj -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Abstractions/IDynamicIntegrationEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Abstractions/IDynamicIntegrationEventHandler.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Abstractions/IEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Abstractions/IEventBus.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Abstractions/IIntegrationEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Abstractions/IIntegrationEventHandler.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Abstractions/INotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Abstractions/INotify.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Events/IntegrationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Events/IntegrationEvent.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Extensions/GenericTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Extensions/GenericTypeExtensions.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Extensions/MediatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Extensions/MediatorExtensions.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/IEventBusSubscriptionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/IEventBusSubscriptionsManager.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/InMemoryEventBusSubscriptionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/InMemoryEventBusSubscriptionsManager.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/SubscriptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/SubscriptionInfo.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.EventBus/Zero.EventBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.EventBus/Zero.EventBus.csproj -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventbus.RabbitMQ/DefaultRabbitMQPersistentConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventbus.RabbitMQ/DefaultRabbitMQPersistentConnection.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventbus.RabbitMQ/IRabbitMQPersistentConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventbus.RabbitMQ/IRabbitMQPersistentConnection.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventbus.RabbitMQ/RabbitMqEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventbus.RabbitMQ/RabbitMqEventBus.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventbus.RabbitMQ/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventbus.RabbitMQ/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventbus.RabbitMQ/Zero.Eventbus.RabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventbus.RabbitMQ/Zero.Eventbus.RabbitMQ.csproj -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventlog/EventLogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventlog/EventLogContext.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventlog/EventLogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventlog/EventLogEntry.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventlog/EventLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventlog/EventLogService.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventlog/EventState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventlog/EventState.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventlog/IEventLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventlog/IEventLogService.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventlog/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventlog/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /lib/eventbus/Zero.Eventlog/Zero.Eventlog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/lib/eventbus/Zero.Eventlog/Zero.Eventlog.csproj -------------------------------------------------------------------------------- /services/identity/Identity.Api/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/AppSettings.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Certificate/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Certificate/Certificate.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Configuration/Config.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Account/AccountController.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Account/AccountOptions.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Account/ExternalController.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Consent/ConsentController.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Device/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Device/DeviceController.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Extensions.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Grants/GrantsController.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/Home/HomeController.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Controllers/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Controllers/TestUsers.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/Factories/ApplicationDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/Factories/ApplicationDbContextFactory.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/Factories/ConfigurationDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/Factories/ConfigurationDbContextFactory.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/Factories/PersistedGrantDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/Factories/PersistedGrantDbContextFactory.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/Migrations/20210118214717_InitialApplicationMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/Migrations/20210118214717_InitialApplicationMigration.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/Seed/ApplicationDbContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/Seed/ApplicationDbContextSeed.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Data/Seed/ConfigurationDbContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Data/Seed/ConfigurationDbContextSeed.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Devspaces/DevspacesRedirectUriValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Devspaces/DevspacesRedirectUriValidator.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Devspaces/IdentityDevspacesBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Devspaces/IdentityDevspacesBuilderExtensions.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Dockerfile -------------------------------------------------------------------------------- /services/identity/Identity.Api/Dockerfile.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Dockerfile.original -------------------------------------------------------------------------------- /services/identity/Identity.Api/Entities/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Entities/ApplicationUser.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Entities/Role.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Entities/RoleClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Entities/RoleClaim.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Entities/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Entities/UserClaim.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Entities/UserLogin.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Entities/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Entities/UserRole.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Entities/UserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Entities/UserToken.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Extensions/LinqSelectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Extensions/LinqSelectExtensions.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Extensions/WebHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Extensions/WebHostExtensions.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Identity.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Identity.Api.csproj -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Device/DeviceAuthorizationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Device/DeviceAuthorizationInputModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Device/DeviceAuthorizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Device/DeviceAuthorizationViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Models/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Models/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Program.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/identity/Identity.Api/Setup/Users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Setup/Users.csv -------------------------------------------------------------------------------- /services/identity/Identity.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Startup.cs -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /services/identity/Identity.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/appsettings.json -------------------------------------------------------------------------------- /services/identity/Identity.Api/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/tempkey.jwk -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/main.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/site.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/site.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/baguetteBox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/baguetteBox.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-datepicker3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-datepicker3.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-float-label.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-float-label.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-stars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-stars.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-tagsinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/bootstrap-tagsinput.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/bootstrap.rtl.only.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/bootstrap.rtl.only.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/component-custom-switch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/component-custom-switch.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/cropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/cropper.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/datatables.responsive.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/datatables.responsive.bootstrap4.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/dropzone.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/fullcalendar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/fullcalendar.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/glide.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/glide.core.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/jquery.contextMenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/jquery.contextMenu.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/jquery.dataTables.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/nouislider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/nouislider.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/owl.carousel.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/perfect-scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/perfect-scrollbar.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/quill.bubble.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/quill.snow.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/select2-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/select2-bootstrap.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/select2.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/slick.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/smart_wizard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/smart_wizard.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/css/vendor/video-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/css/vendor/video-js.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/favicon.ico -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/README.txt -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/config.json -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/animation.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-codes.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-embedded.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-ie7-codes.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds-ie7.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/css/iconsminds.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/demo.html -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.eot -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.svg -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.ttf -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.woff -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/iconsmind-s/font/iconsminds.woff2 -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/simple-line-icons/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/simple-line-icons/LICENSE.md -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/simple-line-icons/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/simple-line-icons/css/simple-line-icons.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/font/simple-line-icons/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/icon.jpg -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/icon.png -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/dore-plugins/select.from.library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/dore-plugins/select.from.library.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/dore.script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/dore.script.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/dore.scripts.landingpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/dore.scripts.landingpage.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/scripts.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/scripts.single.theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/scripts.single.theme.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/Chart.bundle.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/Sortable.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/baguetteBox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/baguetteBox.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/bootstrap-datepicker.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/bootstrap-notify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/bootstrap-notify.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/bootstrap-tagsinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/bootstrap-tagsinput.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/chartjs-plugin-datalabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/chartjs-plugin-datalabels.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/LICENSE.md -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/README.md -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/ckeditor.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/ckeditor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/ckeditor.js.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ar.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ast.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/bg.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ca.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/cs.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/da.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/de.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/el.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/en-au.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/eo.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/es.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/et.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/eu.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/fa.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/fi.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/fr.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/gl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/gu.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/hr.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/hu.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/it.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ja.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/km.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/kn.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ko.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ku.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/nb.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ne.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/nl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/no.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/oc.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/pl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/pt-br.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/pt.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ro.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ru.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/si.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/sk.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/sq.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/sv.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/tr.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/tt.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/ug.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/uk.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/zh-cn.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/ckeditor5-build-classic/translations/zh.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/countdown.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/cropper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/cropper.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/datatables.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/dropzone.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/fullcalendar.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/glide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/glide.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.autoellipsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.autoellipsis.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.barrating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.barrating.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.contextMenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.contextMenu.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.smartWizard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.smartWizard.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/additional-methods.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/additional-methods.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/jquery.validate.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/jquery.validate.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ar.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ar.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_az.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_az.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_az.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_bg.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_bg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_bg.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_bn_BD.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ca.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ca.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ca.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_cs.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_cs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_cs.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_da.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_da.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_de.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_de.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_el.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_el.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_el.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es_AR.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_es_PE.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_et.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_et.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_et.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_eu.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_eu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_eu.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fa.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fa.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fi.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fi.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fr.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_fr.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ge.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ge.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ge.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_gl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_gl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_gl.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_he.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_he.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_he.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hr.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hr.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hu.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hu.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hy_AM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_hy_AM.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_id.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_id.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_id.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_is.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_is.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_is.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_it.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_it.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ja.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ja.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ka.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ka.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ka.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_kk.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_kk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_kk.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ko.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ko.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lt.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lt.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lv.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_lv.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_mk.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_mk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_mk.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_my.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_my.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_my.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_nl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_nl.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_no.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_no.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pl.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pt_BR.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_pt_PT.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ro.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ro.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ru.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ru.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sd.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sd.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_si.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_si.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_si.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sk.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sk.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sl.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sr.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sr.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sr_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sr_lat.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sv.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_sv.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_th.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_th.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tj.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tj.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tj.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tr.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_tr.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_uk.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_uk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_uk.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ur.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ur.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_ur.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_vi.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_vi.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_zh.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_zh.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/messages_zh_TW.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_de.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_de.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_fi.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_it.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_nl.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/jquery.validate/localization/methods_pt.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/landing-page/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/landing-page/headroom.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/landing-page/jQuery.headroom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/landing-page/jQuery.headroom.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/landing-page/jquery.autoellipsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/landing-page/jquery.autoellipsis.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/landing-page/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/landing-page/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/moment.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/mousetrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/mousetrap.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/mousetrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/mousetrap.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/nouislider.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/owl.carousel.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/perfect-scrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/perfect-scrollbar.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/progressbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/progressbar.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/quill.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/select2.full.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/slick.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/typeahead.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/typeahead.bundle.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/video.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/js/vendor/videojs-youtube.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/js/vendor/videojs-youtube.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_background.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_borders.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_display.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_position.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/identity/Identity.Api/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Behaviors/LogBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Behaviors/LogBehavior.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Behaviors/ValidatorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Behaviors/ValidatorBehavior.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Commands/CreateOrderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Commands/CreateOrderCommand.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Commands/OrderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Commands/OrderHandler.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Queries/IOrderQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Queries/IOrderQuery.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Queries/OrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Queries/OrderModel.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Queries/OrderQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Queries/OrderQuery.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Application/Validations/CreateOrderCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Application/Validations/CreateOrderCommandValidator.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Controllers/HomeController.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Controllers/OrderController.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Dockerfile -------------------------------------------------------------------------------- /services/order/Order.Api/Domain/Events/CreateOrderDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Domain/Events/CreateOrderDomainEvent.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Domain/Exceptions/OrderDomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Domain/Exceptions/OrderDomainException.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Domain/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Domain/Order.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Domain/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Domain/OrderItem.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Infrastructure/IntegrationEventLogContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Infrastructure/IntegrationEventLogContextFactory.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Infrastructure/Migrations/Order/OrderDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Infrastructure/Migrations/Order/OrderDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Infrastructure/OrderDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Infrastructure/OrderDbContext.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Infrastructure/OrderDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Infrastructure/OrderDbContextFactory.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Infrastructure/OrderUow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Infrastructure/OrderUow.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Order.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Order.Api.csproj -------------------------------------------------------------------------------- /services/order/Order.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Program.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/order/Order.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Startup.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Web/Extensions/RegisterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Web/Extensions/RegisterExtensions.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Web/Extensions/SubscribtionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Web/Extensions/SubscribtionExtensions.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Web/Extensions/SwaggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Web/Extensions/SwaggerExtensions.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Web/Extensions/WebHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Web/Extensions/WebHostExtensions.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Web/Filters/AuthorizeCheckOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Web/Filters/AuthorizeCheckOperationFilter.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Web/Filters/GlobalExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Web/Filters/GlobalExceptionFilter.cs -------------------------------------------------------------------------------- /services/order/Order.Api/Web/Filters/VersioningFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/Web/Filters/VersioningFilters.cs -------------------------------------------------------------------------------- /services/order/Order.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/appsettings.Development.json -------------------------------------------------------------------------------- /services/order/Order.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Api/appsettings.json -------------------------------------------------------------------------------- /services/order/Order.Test/Application/OrderHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Test/Application/OrderHandlerTest.cs -------------------------------------------------------------------------------- /services/order/Order.Test/Application/OrderQueryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Test/Application/OrderQueryTest.cs -------------------------------------------------------------------------------- /services/order/Order.Test/Application/RemoveProductStockErrorIntegrationEventHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Test/Application/RemoveProductStockErrorIntegrationEventHandlerTest.cs -------------------------------------------------------------------------------- /services/order/Order.Test/Domain/OrderDomainTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Test/Domain/OrderDomainTest.cs -------------------------------------------------------------------------------- /services/order/Order.Test/Domain/OrderITemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Test/Domain/OrderITemTest.cs -------------------------------------------------------------------------------- /services/order/Order.Test/Order.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/order/Order.Test/Order.Test.csproj -------------------------------------------------------------------------------- /services/product/Product.Api/Application/Behaviors/LogBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Application/Behaviors/LogBehavior.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Application/Behaviors/ValidatorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Application/Behaviors/ValidatorBehavior.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Application/Hubs/ProductHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Application/Hubs/ProductHub.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Application/Queries/IProductQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Application/Queries/IProductQuery.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Application/Queries/ProductCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Application/Queries/ProductCacheKey.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Application/Queries/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Application/Queries/ProductModel.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Application/Queries/ProductQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Application/Queries/ProductQuery.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Controllers/HomeController.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Controllers/ProductController.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Dockerfile -------------------------------------------------------------------------------- /services/product/Product.Api/Domain/Exceptions/ProductDomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Domain/Exceptions/ProductDomainException.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Domain/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Domain/Product.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Domain/ProductType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Domain/ProductType.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Infrastructure/IntegrationEventLogContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Infrastructure/IntegrationEventLogContextFactory.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Infrastructure/ProductDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Infrastructure/ProductDbContext.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Infrastructure/ProductDvContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Infrastructure/ProductDvContextFactory.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Infrastructure/ProductUow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Infrastructure/ProductUow.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Infrastructure/Seed/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Infrastructure/Seed/Config.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Infrastructure/Seed/ProductDbContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Infrastructure/Seed/ProductDbContextSeed.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Product.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Product.Api.csproj -------------------------------------------------------------------------------- /services/product/Product.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Program.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/product/Product.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Startup.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Web/Extensions/RegisterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Web/Extensions/RegisterExtensions.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Web/Extensions/SubscribtionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Web/Extensions/SubscribtionExtensions.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Web/Extensions/SwaggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Web/Extensions/SwaggerExtensions.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Web/Extensions/WebHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Web/Extensions/WebHostExtensions.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Web/Filters/AuthorizeCheckOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Web/Filters/AuthorizeCheckOperationFilter.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Web/Filters/GlobalExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Web/Filters/GlobalExceptionFilter.cs -------------------------------------------------------------------------------- /services/product/Product.Api/Web/Filters/VersioningFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/Web/Filters/VersioningFilters.cs -------------------------------------------------------------------------------- /services/product/Product.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/appsettings.Development.json -------------------------------------------------------------------------------- /services/product/Product.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Api/appsettings.json -------------------------------------------------------------------------------- /services/product/Product.Test/Product.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Test/Product.Test.csproj -------------------------------------------------------------------------------- /services/product/Product.Test/ProductDomainTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Test/ProductDomainTest.cs -------------------------------------------------------------------------------- /services/product/Product.Test/ProductQueryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Test/ProductQueryTest.cs -------------------------------------------------------------------------------- /services/product/Product.Test/RemoveProductStockIntegrationEventHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/Product.Test/RemoveProductStockIntegrationEventHandlerTest.cs -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/Dockerfile -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/Product.Command.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/Product.Command.Api.csproj -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/Program.cs -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/Startup.cs -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/WeatherForecast.cs -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/appsettings.Development.json -------------------------------------------------------------------------------- /services/product/command/Product.Command.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Api/appsettings.json -------------------------------------------------------------------------------- /services/product/command/Product.Command.Test/Product.Command.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Test/Product.Command.Test.csproj -------------------------------------------------------------------------------- /services/product/command/Product.Command.Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/command/Product.Command.Test/UnitTest1.cs -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/Dockerfile -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/Product.Query.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/Product.Query.Api.csproj -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/Program.cs -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/Startup.cs -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/WeatherForecast.cs -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/appsettings.Development.json -------------------------------------------------------------------------------- /services/product/query/Product.Query.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Api/appsettings.json -------------------------------------------------------------------------------- /services/product/query/Product.Query.Test/Product.Query.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Test/Product.Query.Test.csproj -------------------------------------------------------------------------------- /services/product/query/Product.Query.Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzzaydin/eshopzero/HEAD/services/product/query/Product.Query.Test/UnitTest1.cs --------------------------------------------------------------------------------