├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data └── remove_when_something_is_here ├── docs └── remove_when_something_is_here ├── media ├── logo.afphoto └── logo.png ├── screenshot.png ├── sources └── PugetSound │ ├── .gitignore │ ├── PugetSound.sln │ ├── PugetSound.sln.DotSettings │ └── PugetSound │ ├── Auth │ ├── ClaimsHelpers.cs │ ├── SpotifyAccessService.cs │ └── TokenResponse.cs │ ├── Controllers │ ├── ExternalController.cs │ └── InternalController.cs │ ├── Data │ ├── AppDbContext.cs │ ├── DbInitializer.cs │ ├── Models │ │ └── UserScore.cs │ └── Services │ │ └── UserScoreService.cs │ ├── Helpers │ ├── DeviceHelpers.cs │ ├── EnumHelpers.cs │ └── MemberHelpers.cs │ ├── Hubs │ ├── IRoomHubInterface.cs │ └── RoomHub.cs │ ├── LogEnricher.cs │ ├── Logic │ ├── Constants.cs │ ├── CustomRoomEvent.cs │ ├── DevicePersistenceService.cs │ ├── IRoomEvent.cs │ ├── PartyRoom.cs │ ├── Reaction.cs │ ├── RoomCurrentReactions.cs │ ├── RoomMember.cs │ ├── RoomNotification.cs │ ├── RoomService.cs │ ├── RoomState.cs │ ├── RoomWorker.cs │ ├── SongPlayedEvent.cs │ ├── SongSkippedEvent.cs │ ├── SpotifyHelpers.cs │ ├── StatisticsService.cs │ └── UserEvent.cs │ ├── Models │ ├── AdminModel.cs │ ├── ErrorViewModel.cs │ ├── IndexModel.cs │ ├── RoomHistoryModel.cs │ └── RoomModel.cs │ ├── Program.cs │ ├── Properties │ ├── ServiceDependencies │ │ └── pugetsound-prod - Web Deploy │ │ │ └── profile.arm.json │ └── launchSettings.json │ ├── PugetSound.csproj │ ├── Revision.cs │ ├── Routing │ └── LowerCaseParameterTransformer.cs │ ├── Startup.cs │ ├── Views │ ├── External │ │ ├── HowItWorks.cshtml │ │ └── Index.cshtml │ ├── Internal │ │ ├── Admin.cshtml │ │ ├── Index.cshtml │ │ ├── Room.cshtml │ │ └── RoomHistory.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── libman.json │ └── wwwroot │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── css │ └── site.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── images │ └── missingart.jpg │ ├── js │ ├── signalr │ │ └── dist │ │ │ └── browser │ │ │ ├── signalr.js │ │ │ ├── signalr.js.map │ │ │ ├── signalr.min.js │ │ │ └── signalr.min.js.map │ └── site.js │ ├── lib │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ ├── ms-icon-70x70.png │ └── robots.txt └── submodules └── remove_when_something_is_here /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/README.md -------------------------------------------------------------------------------- /data/remove_when_something_is_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/remove_when_something_is_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/logo.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/media/logo.afphoto -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/media/logo.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/screenshot.png -------------------------------------------------------------------------------- /sources/PugetSound/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/.gitignore -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound.sln -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound.sln.DotSettings -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Auth/ClaimsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Auth/ClaimsHelpers.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Auth/SpotifyAccessService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Auth/SpotifyAccessService.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Auth/TokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Auth/TokenResponse.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Controllers/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Controllers/ExternalController.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Controllers/InternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Controllers/InternalController.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Data/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Data/AppDbContext.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Data/DbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Data/DbInitializer.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Data/Models/UserScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Data/Models/UserScore.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Data/Services/UserScoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Data/Services/UserScoreService.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Helpers/DeviceHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Helpers/DeviceHelpers.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Helpers/EnumHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Helpers/EnumHelpers.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Helpers/MemberHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Helpers/MemberHelpers.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Hubs/IRoomHubInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Hubs/IRoomHubInterface.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Hubs/RoomHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Hubs/RoomHub.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/LogEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/LogEnricher.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/Constants.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/CustomRoomEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/CustomRoomEvent.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/DevicePersistenceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/DevicePersistenceService.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/IRoomEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/IRoomEvent.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/PartyRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/PartyRoom.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/Reaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/Reaction.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/RoomCurrentReactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/RoomCurrentReactions.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/RoomMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/RoomMember.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/RoomNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/RoomNotification.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/RoomService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/RoomService.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/RoomState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/RoomState.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/RoomWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/RoomWorker.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/SongPlayedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/SongPlayedEvent.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/SongSkippedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/SongSkippedEvent.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/SpotifyHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/SpotifyHelpers.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/StatisticsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/StatisticsService.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Logic/UserEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Logic/UserEvent.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Models/AdminModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Models/AdminModel.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Models/IndexModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Models/IndexModel.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Models/RoomHistoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Models/RoomHistoryModel.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Models/RoomModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Models/RoomModel.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Program.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Properties/ServiceDependencies/pugetsound-prod - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Properties/ServiceDependencies/pugetsound-prod - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Properties/launchSettings.json -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/PugetSound.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/PugetSound.csproj -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Revision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Revision.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Routing/LowerCaseParameterTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Routing/LowerCaseParameterTransformer.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Startup.cs -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/External/HowItWorks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/External/HowItWorks.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/External/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/External/Index.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/Internal/Admin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/Internal/Admin.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/Internal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/Internal/Index.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/Internal/Room.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/Internal/Room.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/Internal/RoomHistory.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/Internal/RoomHistory.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/appsettings.Development.json -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/appsettings.json -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/libman.json -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/android-icon-144x144.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/android-icon-192x192.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/android-icon-36x36.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/android-icon-48x48.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/android-icon-72x72.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/android-icon-96x96.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-114x114.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-120x120.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-144x144.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-152x152.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-180x180.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-57x57.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-60x60.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-72x72.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-76x76.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon-precomposed.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/apple-icon.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/browserconfig.xml -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/css/site.css -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/favicon-16x16.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/favicon-32x32.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/favicon-96x96.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/favicon.ico -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/images/missingart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/images/missingart.jpg -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.js.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.min.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/js/signalr/dist/browser/signalr.min.js.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/js/site.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/manifest.json -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/ms-icon-144x144.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/ms-icon-150x150.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/ms-icon-310x310.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomzorz/PugetSound/HEAD/sources/PugetSound/PugetSound/wwwroot/ms-icon-70x70.png -------------------------------------------------------------------------------- /sources/PugetSound/PugetSound/wwwroot/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /submodules/remove_when_something_is_here: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------