├── .gitattributes ├── .gitignore ├── Listify.Backend ├── .vs │ └── Listify.Backend │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── config │ │ └── applicationhost.config ├── Clients │ ├── Listify.Identity │ │ ├── Config.cs │ │ ├── Constants.cs │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ └── Migrations │ │ │ │ ├── Identity │ │ │ │ ├── 20200811210217_inital.Designer.cs │ │ │ │ ├── 20200811210217_inital.cs │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ │ └── IdentityServer │ │ │ │ ├── ConfigurationDb │ │ │ │ ├── 20200111202043_Init.Designer.cs │ │ │ │ ├── 20200111202043_Init.cs │ │ │ │ └── ConfigurationDbContextModelSnapshot.cs │ │ │ │ └── PersistedGrantDb │ │ │ │ ├── 20200111202109_Init.Designer.cs │ │ │ │ ├── 20200111202109_Init.cs │ │ │ │ └── PersistedGrantDbContextModelSnapshot.cs │ │ ├── Listify.Identity.csproj │ │ ├── Models │ │ │ └── ApplicationUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Quickstart │ │ │ ├── Account │ │ │ │ ├── AccountController.cs │ │ │ │ ├── AccountOptions.cs │ │ │ │ ├── ExternalProvider.cs │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ ├── LoginInputModel.cs │ │ │ │ ├── LoginViewModel.cs │ │ │ │ ├── LogoutInputModel.cs │ │ │ │ └── LogoutViewModel.cs │ │ │ ├── Consent │ │ │ │ ├── ConsentController.cs │ │ │ │ ├── ConsentInputModel.cs │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── ConsentViewModel.cs │ │ │ │ ├── ProcessConsentResult.cs │ │ │ │ └── ScopeViewModel.cs │ │ │ ├── Diagnostics │ │ │ │ ├── DiagnosticsController.cs │ │ │ │ └── DiagnosticsViewModel.cs │ │ │ ├── Grants │ │ │ │ ├── GrantsController.cs │ │ │ │ └── GrantsViewModel.cs │ │ │ ├── Home │ │ │ │ ├── ErrorViewModel.cs │ │ │ │ └── HomeController.cs │ │ │ └── SecurityHeadersAttribute.cs │ │ ├── SeedData.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ └── Logout.cshtml │ │ │ ├── Consent │ │ │ │ ├── Index.cshtml │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Diagnostics │ │ │ │ └── Index.cshtml │ │ │ ├── Grants │ │ │ │ └── Index.cshtml │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationSummary.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── tempkey.rsa │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ ├── site.less │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── icon.jpg │ │ │ ├── icon.png │ │ │ ├── imgs │ │ │ ├── LoginFacebook.png │ │ │ ├── LoginGithub.png │ │ │ ├── LoginGoogle.png │ │ │ ├── LoginMicrosoft.png │ │ │ ├── LoginSteam.png │ │ │ ├── LoginTwitch.png │ │ │ ├── LoginTwitter.png │ │ │ ├── LoginYoutube.png │ │ │ ├── SocialMediaAll.png │ │ │ └── TwitchIcon.png │ │ │ ├── js │ │ │ └── signout-redirect.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── changelog.md │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── additional │ │ │ │ │ ├── accept.js │ │ │ │ │ ├── additional.js │ │ │ │ │ ├── alphanumeric.js │ │ │ │ │ ├── bankaccountNL.js │ │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ │ ├── bic.js │ │ │ │ │ ├── cifES.js │ │ │ │ │ ├── cpfBR.js │ │ │ │ │ ├── creditcardtypes.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── dateFA.js │ │ │ │ │ ├── dateITA.js │ │ │ │ │ ├── dateNL.js │ │ │ │ │ ├── extension.js │ │ │ │ │ ├── giroaccountNL.js │ │ │ │ │ ├── iban.js │ │ │ │ │ ├── integer.js │ │ │ │ │ ├── ipv4.js │ │ │ │ │ ├── ipv6.js │ │ │ │ │ ├── lettersonly.js │ │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ │ ├── mobileNL.js │ │ │ │ │ ├── mobileUK.js │ │ │ │ │ ├── nieES.js │ │ │ │ │ ├── nifES.js │ │ │ │ │ ├── notEqualTo.js │ │ │ │ │ ├── nowhitespace.js │ │ │ │ │ ├── pattern.js │ │ │ │ │ ├── phoneNL.js │ │ │ │ │ ├── phoneUK.js │ │ │ │ │ ├── phoneUS.js │ │ │ │ │ ├── phonesUK.js │ │ │ │ │ ├── postalCodeCA.js │ │ │ │ │ ├── postalcodeBR.js │ │ │ │ │ ├── postalcodeIT.js │ │ │ │ │ ├── postalcodeNL.js │ │ │ │ │ ├── postcodeUK.js │ │ │ │ │ ├── require_from_group.js │ │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ │ ├── statesUS.js │ │ │ │ │ ├── strippedminlength.js │ │ │ │ │ ├── time.js │ │ │ │ │ ├── time12h.js │ │ │ │ │ ├── url2.js │ │ │ │ │ ├── vinUS.js │ │ │ │ │ ├── zipcodeUS.js │ │ │ │ │ └── ziprange.js │ │ │ │ ├── ajax.js │ │ │ │ ├── core.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ └── validation.jquery.json │ │ │ └── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ └── Listify.WebAPI │ │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── BaseController.cs │ │ ├── PaypalController.cs │ │ └── WeatherForecastController.cs │ │ ├── Hubs │ │ ├── ListifyHub.cs │ │ └── RoomHub.cs │ │ ├── Listify.WebAPI.csproj │ │ ├── Models │ │ ├── ContentAvailability.cs │ │ ├── ContentAvailabilityRequest.cs │ │ ├── PlaylistImageRequest.cs │ │ └── RoomInformation.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── Domain │ ├── Listify.Domain.BLL │ │ ├── AutoMap.cs │ │ ├── BaseBLL.cs │ │ ├── BasePoll.cs │ │ ├── Events │ │ │ ├── Args │ │ │ │ ├── BaseEventArgs.cs │ │ │ │ └── BasePollingEventArgs.cs │ │ │ └── EventHandlers.cs │ │ ├── IBasePoll.cs │ │ └── Listify.Domain.BLL.csproj │ ├── Listify.Domain.CodeFirst │ │ ├── ApplicationDbContext.cs │ │ ├── Listify.Domain.CodeFirst.csproj │ │ └── Migrations │ │ │ ├── 20200913135409_Init.Designer.cs │ │ │ ├── 20200913135409_Init.cs │ │ │ ├── 20200915171601_Included mature content.Designer.cs │ │ │ ├── 20200915171601_Included mature content.cs │ │ │ ├── 20200915185045_Included mature content chat filter.Designer.cs │ │ │ ├── 20200915185045_Included mature content chat filter.cs │ │ │ ├── 20200920145826_making some change in database.Designer.cs │ │ │ ├── 20200920145826_making some change in database.cs │ │ │ ├── 20200921161123_fixing purchasableLineItem bug.Designer.cs │ │ │ ├── 20200921161123_fixing purchasableLineItem bug.cs │ │ │ ├── 20200926134331_Added genres for playlist.Designer.cs │ │ │ ├── 20200926134331_Added genres for playlist.cs │ │ │ ├── 20201013123000_Added final changes to database.Designer.cs │ │ │ ├── 20201013123000_Added final changes to database.cs │ │ │ ├── 20201015140454_Adding listify schema for purchasableLineItems.Designer.cs │ │ │ ├── 20201015140454_Adding listify schema for purchasableLineItems.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Listify.Domain.Lib │ │ ├── DTOs │ │ │ └── BaseDTO.cs │ │ ├── Entities │ │ │ ├── ApplicationUser.cs │ │ │ ├── ApplicationUserRoom.cs │ │ │ ├── ApplicationUserRoomConnection.cs │ │ │ ├── ApplicationUserRoomCurrencyRoom.cs │ │ │ ├── BaseEntity.cs │ │ │ ├── ChatMessage.cs │ │ │ ├── Currency.cs │ │ │ ├── CurrencyRoom.cs │ │ │ ├── Follow.cs │ │ │ ├── Genre.cs │ │ │ ├── LogAPI.cs │ │ │ ├── LogError.cs │ │ │ ├── Playlist.cs │ │ │ ├── PlaylistGenre.cs │ │ │ ├── PurchasableItem.cs │ │ │ ├── Purchase.cs │ │ │ ├── PurchaseLineItem.cs │ │ │ ├── PurchaseLineItemCurrency.cs │ │ │ ├── Room.cs │ │ │ ├── RoomGenre.cs │ │ │ ├── Song.cs │ │ │ ├── SongPlaylist.cs │ │ │ ├── SongQueued.cs │ │ │ ├── SongRequest.cs │ │ │ ├── Transaction.cs │ │ │ └── TransactionSongQueued.cs │ │ ├── Enums │ │ │ └── Enums.cs │ │ ├── Listify.Domain.Lib.csproj │ │ ├── Requests │ │ │ ├── BaseRequest.cs │ │ │ └── BaseUpdateRequest.cs │ │ ├── Responses │ │ │ └── Response.cs │ │ └── VMs │ │ │ └── BaseVM.cs │ └── Listify.Paths │ │ └── Listify.Paths.csproj ├── Listify.Backend.sln └── Modules │ ├── Listify.BLL │ ├── Events │ │ └── Args │ │ │ ├── CurrencyPollEventArgs.cs │ │ │ ├── PingPollEventArgs.cs │ │ │ └── RoomsOnlinePollEventArgs.cs │ ├── Listify.BLL.csproj │ └── Polls │ │ ├── CurrencyPoll.cs │ │ ├── ICurrencyPoll.cs │ │ ├── IPingPoll.cs │ │ ├── IRoomsOnlinePoll.cs │ │ ├── PingPoll.cs │ │ └── RoomsOnlinePoll.cs │ ├── Listify.DAL │ ├── IListifyDAL.cs │ ├── Listify.DAL.csproj │ └── ListifyDAL.cs │ ├── Listify.Lib │ ├── DTOs │ │ ├── ApplicationUserDTO.cs │ │ ├── ApplicationUserRoomConnectionDTO.cs │ │ ├── ApplicationUserRoomCurrencyRoomDTO.cs │ │ ├── ApplicationUserRoomDTO.cs │ │ ├── ChatMessageDTO.cs │ │ ├── CurrencyDTO.cs │ │ ├── CurrencyRoomDTO.cs │ │ ├── FollowDTO.cs │ │ ├── GenreDTO.cs │ │ ├── LogAPIDTO.cs │ │ ├── LogErrorDTO.cs │ │ ├── PlaylistDTO.cs │ │ ├── PlaylistGenreDTO.cs │ │ ├── PurchasableItemDTO.cs │ │ ├── PurchaseDTO.cs │ │ ├── PurchaseLineItemCurrencyDTO.cs │ │ ├── PurchaseLineItemDTO.cs │ │ ├── RoomDTO.cs │ │ ├── RoomGenreDTO.cs │ │ ├── SongDTO.cs │ │ ├── SongPlaylistDTO.cs │ │ ├── SongQueuedDTO.cs │ │ ├── SongRequestDTO.cs │ │ ├── TransactionDTO.cs │ │ └── TransactionSongQueuedDTO.cs │ ├── Listify.Lib.csproj │ ├── Requests │ │ ├── ApplicationUserCreateRequest.cs │ │ ├── ApplicationUserRoomConnectionCreateRequest.cs │ │ ├── ApplicationUserRoomConnectionUpdateRequest.cs │ │ ├── ApplicationUserRoomCreateRequest.cs │ │ ├── ApplicationUserRoomCurrencyRoomCreateRequest.cs │ │ ├── ApplicationUserRoomUpdateRequest.cs │ │ ├── ApplicationUserUpdateRequest.cs │ │ ├── ChatMessageCreateRequest.cs │ │ ├── CurrencyRoomCreateRequest.cs │ │ ├── FollowCreateRequest.cs │ │ ├── LogAPICreateRequest.cs │ │ ├── LogErrorCreateRequest.cs │ │ ├── PaypalPaymentRequest.cs │ │ ├── PlaylistCreateRequest.cs │ │ ├── PlaylistGenreCreateRequest.cs │ │ ├── ProfileUpdateRequest.cs │ │ ├── PurchasableItemCreateRequest.cs │ │ ├── PurchasableLineItemCreateRequest.cs │ │ ├── PurchasableLineItemCurrencyCreateRequest.cs │ │ ├── PurchaseConfirmedUpdateRequest.cs │ │ ├── PurchaseCreateRequest.cs │ │ ├── RoomUpdateRequest.cs │ │ ├── ServerStateRequest.cs │ │ ├── SongCreateRequest.cs │ │ ├── SongPlaylistCreateRequest.cs │ │ ├── SongQueuedCreateRequest.cs │ │ ├── SongRequestCreateRequest.cs │ │ ├── SongUpdateRequest.cs │ │ ├── TransactionCreateRequest.cs │ │ ├── TransactionSongQueuedCreateRequest.cs │ │ ├── UpvoteSongQueuedRequest.cs │ │ └── WagerQuantitySongQueuedRquest.cs │ ├── Responses │ │ ├── AuthToLockedRoomResponse.cs │ │ ├── NeutrinoBadWordResponse.cs │ │ ├── PlayFromServerResponse.cs │ │ ├── PurgoMalumResponse.cs │ │ ├── ServerStateResponse.cs │ │ ├── SpotifyAccessTokenResponse.cs │ │ ├── SpotifyPlaylistTracksCollabResponse.cs │ │ ├── SpotifyPlaylistTracksResponse.cs │ │ ├── YoutubePlaylistSearchResponse.cs │ │ ├── YoutubeResults.cs │ │ └── YoutubeSearchResponse.cs │ └── VMs │ │ ├── ApplicationUserRoomConnectionVM.cs │ │ ├── ApplicationUserRoomCurrencyRoomVM.cs │ │ ├── ApplicationUserRoomVM.cs │ │ ├── ApplicationUserVM.cs │ │ ├── ChatMessageVM.cs │ │ ├── CurrencyRoomVM.cs │ │ ├── CurrencyVM.cs │ │ ├── FollowVM.cs │ │ ├── GenreVM.cs │ │ ├── LogAPIVM.cs │ │ ├── LogErrorVM.cs │ │ ├── PlaylistGenreVM.cs │ │ ├── PlaylistVM.cs │ │ ├── ProfileVM.cs │ │ ├── PurchasableItemVM.cs │ │ ├── PurchaseLineItemCurrencyVM.cs │ │ ├── PurchaseLineItemVM.cs │ │ ├── PurchaseVM.cs │ │ ├── RoomGenreVM.cs │ │ ├── RoomVM.cs │ │ ├── SongPlaylistVM.cs │ │ ├── SongQueuedVM.cs │ │ ├── SongRequestVM.cs │ │ ├── SongVM.cs │ │ ├── TransactionSongQueuedVM.cs │ │ └── TransactionVM.cs │ ├── Listify.Services │ ├── IListifyService.cs │ ├── Listify.Services.csproj │ └── ListifyService.cs │ └── Listify.WebAPI.Client │ ├── Listify.WebAPI.Client.csproj │ └── ListifyWebAPIClient.cs ├── Listify ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .vscode │ └── launch.json ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── AppComponent.ts │ │ ├── account │ │ │ ├── account.component.css │ │ │ ├── account.component.html │ │ │ ├── account.component.spec.ts │ │ │ └── account.component.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── authConfig.ts │ │ ├── cart │ │ │ ├── cart.component.css │ │ │ ├── cart.component.html │ │ │ ├── cart.component.spec.ts │ │ │ └── cart.component.ts │ │ ├── checkout │ │ │ ├── checkout.component.css │ │ │ ├── checkout.component.html │ │ │ ├── checkout.component.spec.ts │ │ │ └── checkout.component.ts │ │ ├── checkoutfail │ │ │ ├── checkoutfail.component.css │ │ │ ├── checkoutfail.component.html │ │ │ ├── checkoutfail.component.spec.ts │ │ │ └── checkoutfail.component.ts │ │ ├── currencies │ │ │ ├── currencies.component.css │ │ │ ├── currencies.component.html │ │ │ ├── currencies.component.spec.ts │ │ │ └── currencies.component.ts │ │ ├── currency │ │ │ ├── currency.component.css │ │ │ ├── currency.component.html │ │ │ ├── currency.component.spec.ts │ │ │ └── currency.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── interfaces.ts │ │ ├── material.module.ts │ │ ├── playlist │ │ │ ├── playlist.component.css │ │ │ ├── playlist.component.html │ │ │ ├── playlist.component.spec.ts │ │ │ └── playlist.component.ts │ │ ├── playlists │ │ │ ├── playlists.component.css │ │ │ ├── playlists.component.html │ │ │ ├── playlists.component.spec.ts │ │ │ └── playlists.component.ts │ │ ├── playlistscommunity │ │ │ ├── playlistscommunity.component.css │ │ │ ├── playlistscommunity.component.html │ │ │ ├── playlistscommunity.component.spec.ts │ │ │ └── playlistscommunity.component.ts │ │ ├── profile │ │ │ ├── profile.component.css │ │ │ ├── profile.component.html │ │ │ ├── profile.component.spec.ts │ │ │ └── profile.component.ts │ │ ├── purchasableitems │ │ │ ├── purchasableitems.component.css │ │ │ ├── purchasableitems.component.html │ │ │ ├── purchasableitems.component.spec.ts │ │ │ └── purchasableitems.component.ts │ │ ├── purchases │ │ │ ├── purchases.component.css │ │ │ ├── purchases.component.html │ │ │ ├── purchases.component.spec.ts │ │ │ └── purchases.component.ts │ │ ├── room │ │ │ ├── room.component.css │ │ │ ├── room.component.html │ │ │ ├── room.component.spec.ts │ │ │ └── room.component.ts │ │ ├── rooms │ │ │ ├── rooms.component.css │ │ │ ├── rooms.component.html │ │ │ ├── rooms.component.spec.ts │ │ │ └── rooms.component.ts │ │ ├── services │ │ │ ├── cart.service.spec.ts │ │ │ ├── cart.service.ts │ │ │ ├── globals.service.spec.ts │ │ │ ├── http.service.spec.ts │ │ │ ├── http.service.ts │ │ │ ├── hub.service.spec.ts │ │ │ ├── hub.service.ts │ │ │ ├── player.service.spec.ts │ │ │ ├── player.service.ts │ │ │ ├── profile.service.spec.ts │ │ │ ├── profile.service.ts │ │ │ ├── room-hub.service.spec.ts │ │ │ ├── room-hub.service.ts │ │ │ ├── youtube.service.spec.ts │ │ │ └── youtube.service.ts │ │ └── shared │ │ │ ├── applicationuserroomcurrencies │ │ │ ├── applicationuserroomcurrencies.component.css │ │ │ ├── applicationuserroomcurrencies.component.html │ │ │ ├── applicationuserroomcurrencies.component.spec.ts │ │ │ └── applicationuserroomcurrencies.component.ts │ │ │ ├── auth │ │ │ ├── authguard.service.spec.ts │ │ │ └── authguard.service.ts │ │ │ ├── chat │ │ │ ├── chat.component.css │ │ │ ├── chat.component.html │ │ │ ├── chat.component.spec.ts │ │ │ └── chat.component.ts │ │ │ ├── index.ts │ │ │ ├── modals │ │ │ ├── applicationusersfollowingmodal │ │ │ │ ├── applicationusersfollowingmodal.component.css │ │ │ │ ├── applicationusersfollowingmodal.component.spec.ts │ │ │ │ └── applicationusersfollowingmodal.component.ts │ │ │ ├── applicationusersroommodal │ │ │ │ ├── applicationusersroommodal.component.css │ │ │ │ ├── applicationusersroommodal.component.spec.ts │ │ │ │ └── applicationusersroommodal.component.ts │ │ │ ├── confirmationmodal │ │ │ │ ├── confirmationmodal.component.css │ │ │ │ ├── confirmationmodal.component.spec.ts │ │ │ │ └── confirmationmodal.component.ts │ │ │ ├── informationmodal │ │ │ │ ├── informationmodal.component.css │ │ │ │ ├── informationmodal.component.spec.ts │ │ │ │ └── informationmodal.component.ts │ │ │ └── inputmodal │ │ │ │ ├── inputmodal.component.css │ │ │ │ ├── inputmodal.component.spec.ts │ │ │ │ └── inputmodal.component.ts │ │ │ ├── player │ │ │ ├── player.component.css │ │ │ ├── player.component.html │ │ │ ├── player.component.spec.ts │ │ │ └── player.component.ts │ │ │ ├── profileplaylists │ │ │ ├── profileplaylists.component.css │ │ │ ├── profileplaylists.component.html │ │ │ ├── profileplaylists.component.spec.ts │ │ │ └── profileplaylists.component.ts │ │ │ ├── queue │ │ │ ├── queue.component.css │ │ │ ├── queue.component.html │ │ │ ├── queue.component.spec.ts │ │ │ └── queue.component.ts │ │ │ ├── roomsfollowed │ │ │ ├── roomsfollowed.component.css │ │ │ ├── roomsfollowed.component.html │ │ │ ├── roomsfollowed.component.spec.ts │ │ │ └── roomsfollowed.component.ts │ │ │ ├── searchsongplaylist │ │ │ ├── searchsongplaylist.component.css │ │ │ ├── searchsongplaylist.component.html │ │ │ ├── searchsongplaylist.component.spec.ts │ │ │ └── searchsongplaylist.component.ts │ │ │ ├── searchsongrequest │ │ │ ├── searchsongrequest.component.css │ │ │ ├── searchsongrequest.component.html │ │ │ ├── searchsongrequest.component.spec.ts │ │ │ └── searchsongrequest.component.ts │ │ │ └── songsplaylist │ │ │ ├── songsplaylist.component.css │ │ │ ├── songsplaylist.component.html │ │ │ ├── songsplaylist.component.spec.ts │ │ │ └── songsplaylist.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── Astoundify-Listify.jpg │ │ ├── listifyfulllogo.png │ │ ├── listifylogo.png │ │ ├── origniallistifyfulllogo.jpg │ │ ├── pause.svg │ │ └── sound.gif │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/.gitignore -------------------------------------------------------------------------------- /Listify.Backend/.vs/Listify.Backend/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/.vs/Listify.Backend/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Listify.Backend/.vs/Listify.Backend/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/.vs/Listify.Backend/config/applicationhost.config -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Config.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Constants.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/Identity/20200811210217_inital.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/Identity/20200811210217_inital.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/Identity/20200811210217_inital.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/Identity/20200811210217_inital.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/Identity/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/Identity/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/ConfigurationDb/20200111202043_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/ConfigurationDb/20200111202043_Init.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/ConfigurationDb/20200111202043_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/ConfigurationDb/20200111202043_Init.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/PersistedGrantDb/20200111202109_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/PersistedGrantDb/20200111202109_Init.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/PersistedGrantDb/20200111202109_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/PersistedGrantDb/20200111202109_Init.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/PersistedGrantDb/PersistedGrantDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Data/Migrations/IdentityServer/PersistedGrantDb/PersistedGrantDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Listify.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Listify.Identity.csproj -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Program.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Properties/launchSettings.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/SeedData.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Startup.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/appsettings.Development.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/appsettings.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/tempkey.rsa -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/css/site.css -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/css/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/css/site.less -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/icon.jpg -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/icon.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginFacebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginFacebook.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginGithub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginGithub.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginGoogle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginGoogle.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginMicrosoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginMicrosoft.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginSteam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginSteam.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginTwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginTwitch.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginTwitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginTwitter.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginYoutube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/LoginYoutube.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/SocialMediaAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/SocialMediaAll.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/TwitchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/imgs/TwitchIcon.png -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/bower.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/CONTRIBUTING.md -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/Gruntfile.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/bower.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/accept.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/additional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/additional.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/alphanumeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/alphanumeric.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/bic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/bic.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/cifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/cifES.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/cpfBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/cpfBR.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/currency.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/dateFA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/dateFA.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/dateITA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/dateITA.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/dateNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/dateNL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/extension.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/iban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/iban.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/integer.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/ipv4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/ipv4.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/ipv6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/ipv6.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/lettersonly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/lettersonly.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/mobileNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/mobileNL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/mobileUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/mobileUK.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/nieES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/nieES.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/nifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/nifES.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/notEqualTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/notEqualTo.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/nowhitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/nowhitespace.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/pattern.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phoneNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phoneNL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phoneUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phoneUK.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phoneUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phoneUS.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phonesUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/phonesUK.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postcodeUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/postcodeUK.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/require_from_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/require_from_group.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/statesUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/statesUS.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/strippedminlength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/strippedminlength.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/time.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/time12h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/time12h.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/url2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/url2.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/vinUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/vinUS.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/ziprange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/additional/ziprange.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/ajax.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/core.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ar.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_bg.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ca.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_cs.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_da.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_de.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_el.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_es.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_et.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_eu.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_fa.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_fi.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_fr.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ge.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_gl.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_he.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_hr.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_hu.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_id.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_is.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_it.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ja.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ka.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_kk.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ko.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_lt.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_lv.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_my.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_nl.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_no.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_pl.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ro.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_ru.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_si.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sk.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sl.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sr.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_sv.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_th.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_tj.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_tr.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_uk.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_vi.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_zh.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_de.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_fi.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_nl.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/src/localization/methods_pt.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/validation.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery-validation/validation.jquery.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.Identity/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Controllers/BaseController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Controllers/PaypalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Controllers/PaypalController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Hubs/ListifyHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Hubs/ListifyHub.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Hubs/RoomHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Hubs/RoomHub.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Listify.WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Listify.WebAPI.csproj -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Models/ContentAvailability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Models/ContentAvailability.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Models/ContentAvailabilityRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Models/ContentAvailabilityRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Models/PlaylistImageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Models/PlaylistImageRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Models/RoomInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Models/RoomInformation.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Program.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/Startup.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /Listify.Backend/Clients/Listify.WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Clients/Listify.WebAPI/appsettings.json -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/AutoMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/AutoMap.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/BaseBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/BaseBLL.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/BasePoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/BasePoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/Events/Args/BaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/Events/Args/BaseEventArgs.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/Events/Args/BasePollingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/Events/Args/BasePollingEventArgs.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/Events/EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/Events/EventHandlers.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/IBasePoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/IBasePoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.BLL/Listify.Domain.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.BLL/Listify.Domain.BLL.csproj -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Listify.Domain.CodeFirst.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Listify.Domain.CodeFirst.csproj -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200913135409_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200913135409_Init.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200913135409_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200913135409_Init.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915171601_Included mature content.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915171601_Included mature content.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915171601_Included mature content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915171601_Included mature content.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915185045_Included mature content chat filter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915185045_Included mature content chat filter.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915185045_Included mature content chat filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200915185045_Included mature content chat filter.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200920145826_making some change in database.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200920145826_making some change in database.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200920145826_making some change in database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200920145826_making some change in database.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200921161123_fixing purchasableLineItem bug.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200921161123_fixing purchasableLineItem bug.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200921161123_fixing purchasableLineItem bug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200921161123_fixing purchasableLineItem bug.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200926134331_Added genres for playlist.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200926134331_Added genres for playlist.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200926134331_Added genres for playlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20200926134331_Added genres for playlist.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201013123000_Added final changes to database.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201013123000_Added final changes to database.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201013123000_Added final changes to database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201013123000_Added final changes to database.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201015140454_Adding listify schema for purchasableLineItems.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201015140454_Adding listify schema for purchasableLineItems.Designer.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201015140454_Adding listify schema for purchasableLineItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/20201015140454_Adding listify schema for purchasableLineItems.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.CodeFirst/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/DTOs/BaseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/DTOs/BaseDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUser.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUserRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUserRoom.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUserRoomConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUserRoomConnection.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUserRoomCurrencyRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/ApplicationUserRoomCurrencyRoom.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/ChatMessage.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Currency.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/CurrencyRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/CurrencyRoom.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Follow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Follow.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Genre.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/LogAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/LogAPI.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/LogError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/LogError.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Playlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Playlist.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/PlaylistGenre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/PlaylistGenre.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/PurchasableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/PurchasableItem.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Purchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Purchase.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/PurchaseLineItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/PurchaseLineItem.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/PurchaseLineItemCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/PurchaseLineItemCurrency.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Room.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/RoomGenre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/RoomGenre.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Song.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Song.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/SongPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/SongPlaylist.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/SongQueued.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/SongQueued.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/SongRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/SongRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/Transaction.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Entities/TransactionSongQueued.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Entities/TransactionSongQueued.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Enums/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Enums/Enums.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Listify.Domain.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Listify.Domain.Lib.csproj -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Requests/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Requests/BaseRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Requests/BaseUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Requests/BaseUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/Responses/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/Responses/Response.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Domain.Lib/VMs/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Domain.Lib/VMs/BaseVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Domain/Listify.Paths/Listify.Paths.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Domain/Listify.Paths/Listify.Paths.csproj -------------------------------------------------------------------------------- /Listify.Backend/Listify.Backend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Listify.Backend.sln -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Events/Args/CurrencyPollEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Events/Args/CurrencyPollEventArgs.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Events/Args/PingPollEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Events/Args/PingPollEventArgs.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Events/Args/RoomsOnlinePollEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Events/Args/RoomsOnlinePollEventArgs.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Listify.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Listify.BLL.csproj -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Polls/CurrencyPoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Polls/CurrencyPoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Polls/ICurrencyPoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Polls/ICurrencyPoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Polls/IPingPoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Polls/IPingPoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Polls/IRoomsOnlinePoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Polls/IRoomsOnlinePoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Polls/PingPoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Polls/PingPoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.BLL/Polls/RoomsOnlinePoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.BLL/Polls/RoomsOnlinePoll.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.DAL/IListifyDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.DAL/IListifyDAL.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.DAL/Listify.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.DAL/Listify.DAL.csproj -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.DAL/ListifyDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.DAL/ListifyDAL.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserRoomConnectionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserRoomConnectionDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserRoomCurrencyRoomDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserRoomCurrencyRoomDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserRoomDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/ApplicationUserRoomDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/ChatMessageDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/ChatMessageDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/CurrencyDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/CurrencyDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/CurrencyRoomDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/CurrencyRoomDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/FollowDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/FollowDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/GenreDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/GenreDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/LogAPIDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/LogAPIDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/LogErrorDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/LogErrorDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/PlaylistDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/PlaylistDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/PlaylistGenreDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/PlaylistGenreDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/PurchasableItemDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/PurchasableItemDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/PurchaseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/PurchaseDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/PurchaseLineItemCurrencyDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/PurchaseLineItemCurrencyDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/PurchaseLineItemDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/PurchaseLineItemDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/RoomDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/RoomDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/RoomGenreDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/RoomGenreDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/SongDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/SongDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/SongPlaylistDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/SongPlaylistDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/SongQueuedDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/SongQueuedDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/SongRequestDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/SongRequestDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/TransactionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/TransactionDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/DTOs/TransactionSongQueuedDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/DTOs/TransactionSongQueuedDTO.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Listify.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Listify.Lib.csproj -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomConnectionCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomConnectionCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomConnectionUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomConnectionUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomCurrencyRoomCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomCurrencyRoomCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserRoomUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ApplicationUserUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ChatMessageCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ChatMessageCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/CurrencyRoomCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/CurrencyRoomCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/FollowCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/FollowCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/LogAPICreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/LogAPICreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/LogErrorCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/LogErrorCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PaypalPaymentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PaypalPaymentRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PlaylistCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PlaylistCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PlaylistGenreCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PlaylistGenreCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ProfileUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ProfileUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PurchasableItemCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PurchasableItemCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PurchasableLineItemCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PurchasableLineItemCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PurchasableLineItemCurrencyCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PurchasableLineItemCurrencyCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PurchaseConfirmedUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PurchaseConfirmedUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/PurchaseCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/PurchaseCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/RoomUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/RoomUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/ServerStateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/ServerStateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/SongCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/SongCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/SongPlaylistCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/SongPlaylistCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/SongQueuedCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/SongQueuedCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/SongRequestCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/SongRequestCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/SongUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/SongUpdateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/TransactionCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/TransactionCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/TransactionSongQueuedCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/TransactionSongQueuedCreateRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/UpvoteSongQueuedRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/UpvoteSongQueuedRequest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Requests/WagerQuantitySongQueuedRquest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Requests/WagerQuantitySongQueuedRquest.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/AuthToLockedRoomResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/AuthToLockedRoomResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/NeutrinoBadWordResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/NeutrinoBadWordResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/PlayFromServerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/PlayFromServerResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/PurgoMalumResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/PurgoMalumResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/ServerStateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/ServerStateResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/SpotifyAccessTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/SpotifyAccessTokenResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/SpotifyPlaylistTracksCollabResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/SpotifyPlaylistTracksCollabResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/SpotifyPlaylistTracksResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/SpotifyPlaylistTracksResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/YoutubePlaylistSearchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/YoutubePlaylistSearchResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/YoutubeResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/YoutubeResults.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/Responses/YoutubeSearchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/Responses/YoutubeSearchResponse.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserRoomConnectionVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserRoomConnectionVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserRoomCurrencyRoomVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserRoomCurrencyRoomVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserRoomVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserRoomVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/ApplicationUserVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/ChatMessageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/ChatMessageVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/CurrencyRoomVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/CurrencyRoomVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/CurrencyVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/CurrencyVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/FollowVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/FollowVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/GenreVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/GenreVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/LogAPIVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/LogAPIVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/LogErrorVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/LogErrorVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/PlaylistGenreVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/PlaylistGenreVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/PlaylistVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/PlaylistVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/ProfileVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/ProfileVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/PurchasableItemVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/PurchasableItemVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/PurchaseLineItemCurrencyVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/PurchaseLineItemCurrencyVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/PurchaseLineItemVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/PurchaseLineItemVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/PurchaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/PurchaseVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/RoomGenreVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/RoomGenreVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/RoomVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/RoomVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/SongPlaylistVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/SongPlaylistVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/SongQueuedVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/SongQueuedVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/SongRequestVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/SongRequestVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/SongVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/SongVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/TransactionSongQueuedVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/TransactionSongQueuedVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Lib/VMs/TransactionVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Lib/VMs/TransactionVM.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Services/IListifyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Services/IListifyService.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Services/Listify.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Services/Listify.Services.csproj -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.Services/ListifyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.Services/ListifyService.cs -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.WebAPI.Client/Listify.WebAPI.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.WebAPI.Client/Listify.WebAPI.Client.csproj -------------------------------------------------------------------------------- /Listify.Backend/Modules/Listify.WebAPI.Client/ListifyWebAPIClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify.Backend/Modules/Listify.WebAPI.Client/ListifyWebAPIClient.cs -------------------------------------------------------------------------------- /Listify/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/.browserslistrc -------------------------------------------------------------------------------- /Listify/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/.editorconfig -------------------------------------------------------------------------------- /Listify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/.gitignore -------------------------------------------------------------------------------- /Listify/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/.vscode/launch.json -------------------------------------------------------------------------------- /Listify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/README.md -------------------------------------------------------------------------------- /Listify/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/angular.json -------------------------------------------------------------------------------- /Listify/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Listify/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Listify/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Listify/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/e2e/tsconfig.json -------------------------------------------------------------------------------- /Listify/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/karma.conf.js -------------------------------------------------------------------------------- /Listify/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/package-lock.json -------------------------------------------------------------------------------- /Listify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/package.json -------------------------------------------------------------------------------- /Listify/src/app/AppComponent.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/account/account.component.css: -------------------------------------------------------------------------------- 1 | .account-container { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /Listify/src/app/account/account.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/account/account.component.html -------------------------------------------------------------------------------- /Listify/src/app/account/account.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/account/account.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/account/account.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/account/account.component.ts -------------------------------------------------------------------------------- /Listify/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Listify/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/app.component.css -------------------------------------------------------------------------------- /Listify/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/app.component.html -------------------------------------------------------------------------------- /Listify/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/app.component.ts -------------------------------------------------------------------------------- /Listify/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/app.module.ts -------------------------------------------------------------------------------- /Listify/src/app/authConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/authConfig.ts -------------------------------------------------------------------------------- /Listify/src/app/cart/cart.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/cart/cart.component.css -------------------------------------------------------------------------------- /Listify/src/app/cart/cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/cart/cart.component.html -------------------------------------------------------------------------------- /Listify/src/app/cart/cart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/cart/cart.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/cart/cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/cart/cart.component.ts -------------------------------------------------------------------------------- /Listify/src/app/checkout/checkout.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkout/checkout.component.css -------------------------------------------------------------------------------- /Listify/src/app/checkout/checkout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkout/checkout.component.html -------------------------------------------------------------------------------- /Listify/src/app/checkout/checkout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkout/checkout.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/checkout/checkout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkout/checkout.component.ts -------------------------------------------------------------------------------- /Listify/src/app/checkoutfail/checkoutfail.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkoutfail/checkoutfail.component.css -------------------------------------------------------------------------------- /Listify/src/app/checkoutfail/checkoutfail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkoutfail/checkoutfail.component.html -------------------------------------------------------------------------------- /Listify/src/app/checkoutfail/checkoutfail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkoutfail/checkoutfail.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/checkoutfail/checkoutfail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/checkoutfail/checkoutfail.component.ts -------------------------------------------------------------------------------- /Listify/src/app/currencies/currencies.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/currencies/currencies.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/currencies/currencies.component.html -------------------------------------------------------------------------------- /Listify/src/app/currencies/currencies.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/currencies/currencies.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/currencies/currencies.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/currencies/currencies.component.ts -------------------------------------------------------------------------------- /Listify/src/app/currency/currency.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/currency/currency.component.css -------------------------------------------------------------------------------- /Listify/src/app/currency/currency.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/currency/currency.component.html -------------------------------------------------------------------------------- /Listify/src/app/currency/currency.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/currency/currency.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/currency/currency.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/currency/currency.component.ts -------------------------------------------------------------------------------- /Listify/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/home/home.component.html -------------------------------------------------------------------------------- /Listify/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Listify/src/app/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/interfaces.ts -------------------------------------------------------------------------------- /Listify/src/app/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/material.module.ts -------------------------------------------------------------------------------- /Listify/src/app/playlist/playlist.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/playlist/playlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlist/playlist.component.html -------------------------------------------------------------------------------- /Listify/src/app/playlist/playlist.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlist/playlist.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/playlist/playlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlist/playlist.component.ts -------------------------------------------------------------------------------- /Listify/src/app/playlists/playlists.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlists/playlists.component.css -------------------------------------------------------------------------------- /Listify/src/app/playlists/playlists.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlists/playlists.component.html -------------------------------------------------------------------------------- /Listify/src/app/playlists/playlists.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlists/playlists.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/playlists/playlists.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlists/playlists.component.ts -------------------------------------------------------------------------------- /Listify/src/app/playlistscommunity/playlistscommunity.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlistscommunity/playlistscommunity.component.css -------------------------------------------------------------------------------- /Listify/src/app/playlistscommunity/playlistscommunity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlistscommunity/playlistscommunity.component.html -------------------------------------------------------------------------------- /Listify/src/app/playlistscommunity/playlistscommunity.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlistscommunity/playlistscommunity.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/playlistscommunity/playlistscommunity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/playlistscommunity/playlistscommunity.component.ts -------------------------------------------------------------------------------- /Listify/src/app/profile/profile.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/profile/profile.component.css -------------------------------------------------------------------------------- /Listify/src/app/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/profile/profile.component.html -------------------------------------------------------------------------------- /Listify/src/app/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/profile/profile.component.ts -------------------------------------------------------------------------------- /Listify/src/app/purchasableitems/purchasableitems.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/purchasableitems/purchasableitems.component.css -------------------------------------------------------------------------------- /Listify/src/app/purchasableitems/purchasableitems.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/purchasableitems/purchasableitems.component.html -------------------------------------------------------------------------------- /Listify/src/app/purchasableitems/purchasableitems.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/purchasableitems/purchasableitems.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/purchasableitems/purchasableitems.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/purchasableitems/purchasableitems.component.ts -------------------------------------------------------------------------------- /Listify/src/app/purchases/purchases.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/purchases/purchases.component.html: -------------------------------------------------------------------------------- 1 |

purchases works!

2 | -------------------------------------------------------------------------------- /Listify/src/app/purchases/purchases.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/purchases/purchases.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/purchases/purchases.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/purchases/purchases.component.ts -------------------------------------------------------------------------------- /Listify/src/app/room/room.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/room/room.component.css -------------------------------------------------------------------------------- /Listify/src/app/room/room.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/room/room.component.html -------------------------------------------------------------------------------- /Listify/src/app/room/room.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/room/room.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/room/room.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/room/room.component.ts -------------------------------------------------------------------------------- /Listify/src/app/rooms/rooms.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/rooms/rooms.component.css -------------------------------------------------------------------------------- /Listify/src/app/rooms/rooms.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/rooms/rooms.component.html -------------------------------------------------------------------------------- /Listify/src/app/rooms/rooms.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/rooms/rooms.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/rooms/rooms.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/rooms/rooms.component.ts -------------------------------------------------------------------------------- /Listify/src/app/services/cart.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/cart.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/cart.service.ts -------------------------------------------------------------------------------- /Listify/src/app/services/globals.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/globals.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/http.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/http.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/http.service.ts -------------------------------------------------------------------------------- /Listify/src/app/services/hub.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/hub.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/hub.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/hub.service.ts -------------------------------------------------------------------------------- /Listify/src/app/services/player.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/player.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/player.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/player.service.ts -------------------------------------------------------------------------------- /Listify/src/app/services/profile.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/profile.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/profile.service.ts -------------------------------------------------------------------------------- /Listify/src/app/services/room-hub.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/room-hub.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/room-hub.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/room-hub.service.ts -------------------------------------------------------------------------------- /Listify/src/app/services/youtube.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/youtube.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/services/youtube.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/services/youtube.service.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/applicationuserroomcurrencies/applicationuserroomcurrencies.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/auth/authguard.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/auth/authguard.service.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/auth/authguard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/auth/authguard.service.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/chat/chat.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/chat/chat.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/chat/chat.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/chat/chat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/chat/chat.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/chat/chat.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/index.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/applicationusersfollowingmodal/applicationusersfollowingmodal.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/applicationusersfollowingmodal/applicationusersfollowingmodal.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/applicationusersfollowingmodal/applicationusersfollowingmodal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/applicationusersfollowingmodal/applicationusersfollowingmodal.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/applicationusersfollowingmodal/applicationusersfollowingmodal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/applicationusersfollowingmodal/applicationusersfollowingmodal.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/applicationusersroommodal/applicationusersroommodal.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/applicationusersroommodal/applicationusersroommodal.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/applicationusersroommodal/applicationusersroommodal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/applicationusersroommodal/applicationusersroommodal.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/applicationusersroommodal/applicationusersroommodal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/applicationusersroommodal/applicationusersroommodal.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/confirmationmodal/confirmationmodal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/confirmationmodal/confirmationmodal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/confirmationmodal/confirmationmodal.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/confirmationmodal/confirmationmodal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/confirmationmodal/confirmationmodal.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/informationmodal/informationmodal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/informationmodal/informationmodal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/informationmodal/informationmodal.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/informationmodal/informationmodal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/informationmodal/informationmodal.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/inputmodal/inputmodal.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/inputmodal/inputmodal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/inputmodal/inputmodal.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/modals/inputmodal/inputmodal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/modals/inputmodal/inputmodal.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/player/player.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/player/player.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/player/player.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/player/player.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/player/player.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/player/player.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/player/player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/player/player.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/profileplaylists/profileplaylists.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/profileplaylists/profileplaylists.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/profileplaylists/profileplaylists.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/profileplaylists/profileplaylists.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/profileplaylists/profileplaylists.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/profileplaylists/profileplaylists.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/profileplaylists/profileplaylists.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/profileplaylists/profileplaylists.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/queue/queue.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/queue/queue.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/queue/queue.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/queue/queue.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/queue/queue.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/queue/queue.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/queue/queue.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/queue/queue.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/roomsfollowed/roomsfollowed.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/roomsfollowed/roomsfollowed.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/roomsfollowed/roomsfollowed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/roomsfollowed/roomsfollowed.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/roomsfollowed/roomsfollowed.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/roomsfollowed/roomsfollowed.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/roomsfollowed/roomsfollowed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/roomsfollowed/roomsfollowed.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongplaylist/searchsongplaylist.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongrequest/searchsongrequest.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongrequest/searchsongrequest.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongrequest/searchsongrequest.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongrequest/searchsongrequest.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongrequest/searchsongrequest.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongrequest/searchsongrequest.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/searchsongrequest/searchsongrequest.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/searchsongrequest/searchsongrequest.component.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/songsplaylist/songsplaylist.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/songsplaylist/songsplaylist.component.css -------------------------------------------------------------------------------- /Listify/src/app/shared/songsplaylist/songsplaylist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/songsplaylist/songsplaylist.component.html -------------------------------------------------------------------------------- /Listify/src/app/shared/songsplaylist/songsplaylist.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/songsplaylist/songsplaylist.component.spec.ts -------------------------------------------------------------------------------- /Listify/src/app/shared/songsplaylist/songsplaylist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/app/shared/songsplaylist/songsplaylist.component.ts -------------------------------------------------------------------------------- /Listify/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listify/src/assets/Astoundify-Listify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/assets/Astoundify-Listify.jpg -------------------------------------------------------------------------------- /Listify/src/assets/listifyfulllogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/assets/listifyfulllogo.png -------------------------------------------------------------------------------- /Listify/src/assets/listifylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/assets/listifylogo.png -------------------------------------------------------------------------------- /Listify/src/assets/origniallistifyfulllogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/assets/origniallistifyfulllogo.jpg -------------------------------------------------------------------------------- /Listify/src/assets/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/assets/pause.svg -------------------------------------------------------------------------------- /Listify/src/assets/sound.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/assets/sound.gif -------------------------------------------------------------------------------- /Listify/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Listify/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/environments/environment.ts -------------------------------------------------------------------------------- /Listify/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/favicon.ico -------------------------------------------------------------------------------- /Listify/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/index.html -------------------------------------------------------------------------------- /Listify/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/main.ts -------------------------------------------------------------------------------- /Listify/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/polyfills.ts -------------------------------------------------------------------------------- /Listify/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/styles.css -------------------------------------------------------------------------------- /Listify/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/src/test.ts -------------------------------------------------------------------------------- /Listify/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/tsconfig.app.json -------------------------------------------------------------------------------- /Listify/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/tsconfig.base.json -------------------------------------------------------------------------------- /Listify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/tsconfig.json -------------------------------------------------------------------------------- /Listify/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/tsconfig.spec.json -------------------------------------------------------------------------------- /Listify/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/Listify/tslint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkassm/Listify/HEAD/README.md --------------------------------------------------------------------------------