|
NookPost-Backend
|
| ▼NNookpostBackend | |
| ▼NApiEndpoints | |
| ▼NAuthentication | |
| CChangePassword | Handles the authentication login endpoint |
| CEndpointSetup | Sets up the Authentication Endpoints |
| CLogin | Handles the authentication login endpoint |
| ▼NCategories | |
| CEndpointSetup | Handles setting up the post endpoints |
| CGetAllCategories | Handles getting all categories |
| CGetCategory | Handles getting a category |
| ▼NPosts | |
| CDeletePost | |
| CEndpointSetup | Handles setting up the post endpoints |
| CGetPost | |
| CGetPostFiltered | |
| CPostPost | |
| CPutPost | |
| ▼NUsers | |
| CDeleteUserMe | Handles delete requests for users |
| CEndpointSetup | Handles setting up the user endpoints |
| CGetUser | Handles get requests for users |
| CGetUserMe | Handles get requests for users |
| CPostUser | Handles the user create endpoint |
| CPutUserMe | Handles put requests for users |
| ▼NUserSettings | |
| CEndpointSetup | Handles setting up the user settings endpoints |
| CGetUserSettings | |
| CPutUserSettings | |
| CEndpointSetup | Handles setting up all API Endpoints |
| ▼NApiSchemas | |
| ▼NAuthentication | |
| ▼NChangePassword | |
| CPutChangePasswordRequestBody | Represents the request body of a change password request |
| ▼NLogin | |
| CAuthenticationLoginRequestBody | The body of a login request |
| CAuthenticationLoginResponseBody | Represents a token object in the response to a Login request |
| ▼NCategories | |
| ▼NGetAllCategories | |
| CGetAllCategoriesCategory | |
| CGetAllCategoriesResponseBody | The body of a Get request to category/all |
| ▼NGetCategory | |
| CGetCategoryResponseBody | |
| ▼NPostCategory | |
| CPostCategoryResponseBody | The body of a response to a POST request to category |
| ▼NPutCategory | |
| CPutCategoryRequestBody | The body of a PUT request to category |
| CCategoryData | |
| ▼NPosts | |
| ▼NGetPost | |
| CGetPostResponseBody | Response to a post get request |
| ▼NGetPostFiltered | |
| CGetPostFilteredPost | Response to a post get request |
| CGetPostFilteredResponseBody | The response to a get posts request with filter |
| ▼NPostPost | |
| CPostPostResponseBody | The response to a post create message |
| ▼NPutPost | |
| CPutPostRequestBody | Response to a post get request |
| CPostData | Represents a post created by a user |
| CPostGetData | Common data for a psot get response |
| ▼NUsers | |
| ▼NGetUser | |
| CUsersGetResponseBody | The response to a user get request if successful |
| ▼NPostUser | |
| CUsersPostRequestBody | The request body of a user create request |
| CUsersPostResponseBody | Represents a token object in the response to a user create request |
| ▼NPutUser | |
| CUserPutRequestBody | Request body of a user put request |
| CUserData | Common data for the user object |
| ▼NUserSettings | |
| CUserSettingsData | Represents user settings objects |
| ▼NAuthentication | |
| CTokenService | The service provider for token generation. Initialized as singleton by the application builder |
| ▼NConfiguration | |
| CSettings | Singleton that holds settings about the server. Automatically loaded and set up by static constructor |
| ▼NCryptography | |
| CGenerators | Cryptographic generators for values |
| CPasswordHashing | Holds methods for hashing passwords, and checking the hashed passwords |
| ▼NData | |
| CDatabaseHandle | Create a Context for the API |
| CModelBuilderExtensions | Creates some sample database entries, when running in the development mode |
| ▼NModels | |
| CCategory | A category for posts |
| CPost | Represents a post created by a user |
| CUser | User information |
| CUserSettings | Represents user settings |
| CProgram |