Files
WatchIt/WatchIt.Website/WatchIt.Website/appsettings.json

58 lines
1.4 KiB
JSON
Raw Normal View History

2024-03-15 15:35:04 +01:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
2024-04-27 22:36:16 +02:00
},
2024-07-03 22:18:32 +02:00
"AllowedHosts": "*",
"StorageKeys": {
"AccessToken": "access_token",
"RefreshToken": "refresh_token"
},
2024-07-03 22:18:32 +02:00
"Endpoints": {
"Base": "https://localhost:7160",
"Accounts": {
"Base": "/accounts",
"Register": "/register",
"Authenticate": "/authenticate",
"AuthenticateRefresh": "/authenticate-refresh",
"Logout": "/logout",
"GetProfilePicture": "/{0}/profile-picture"
2024-07-03 22:18:32 +02:00
},
"Genres": {
"Base": "/genres",
"GetAll": "",
"Get": "/{0}",
"Post": "",
"Put": "/{0}",
"Delete": "/{0}"
},
"Movies": {
"Base": "/movies",
"GetAll": "",
"Get": "/{0}",
"Post": "",
"Put": "/{0}",
"Delete": "/{0}"
2024-07-03 22:18:32 +02:00
},
"Media": {
"Base": "/media",
2024-09-19 13:36:01 +02:00
"Get": "/{0}",
2024-07-03 22:18:32 +02:00
"GetGenres": "/{0}/genres",
"PostGenre": "/{0}/genres/{1}",
"DeleteGenre": "/{0}/genres/{1}",
"GetPhotoMediaRandomBackground": "/{0}/photos/random_background",
2024-09-11 15:59:13 +02:00
"GetPoster": "/{0}/poster",
"PutPoster": "/{0}/poster",
"DeletePoster": "/{0}/poster",
2024-07-03 22:18:32 +02:00
"GetPhoto": "/photos/{0}",
"GetPhotos": "/photos",
"GetPhotoRandomBackground": "/photos/random_background",
"PostPhoto": "/photos",
"PutPhoto": "/photos/{0}",
"DeletePhoto": "/photos/{0}"
}
}
2024-03-15 15:35:04 +01:00
}