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

74 lines
1.9 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}"
},
"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}",
2024-09-20 23:37:55 +02:00
"GetMediaRating": "/{0}/rating",
"GetMediaRatingByUser": "/{0}/rating/{1}",
"PutMediaRating": "/{0}/rating",
"DeleteMediaRating": "/{0}/rating",
"PostMediaView": "/{0}/view",
2024-09-20 23:37:55 +02:00
2024-07-03 22:18:32 +02:00
"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}"
},
"Movies": {
"Base": "/movies",
2024-09-22 00:37:26 +02:00
"GetAllMovies": "",
"GetMovie": "/{0}",
"PostMovie": "",
"PutMovie": "/{0}",
"DeleteMovie": "/{0}",
"GetMoviesViewRank": "/view"
},
"Series": {
"Base": "/series",
"GetAllSeries": "",
"GetSeries": "/{0}",
"PostSeries": "",
"PutSeries": "/{0}",
"DeleteSeries": "/{0}",
"GetSeriesViewRank": "/view"
2024-07-03 22:18:32 +02:00
}
}
2024-03-15 15:35:04 +01:00
}