Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deerborg/contentmanagement-fullstack
ContentManagement is a full-stack application for managing content, tracking user activities, and handling messages, with an intuitive frontend and robust backend API.
https://github.com/deerborg/contentmanagement-fullstack
Last synced: about 2 months ago
JSON representation
ContentManagement is a full-stack application for managing content, tracking user activities, and handling messages, with an intuitive frontend and robust backend API.
- Host: GitHub
- URL: https://github.com/deerborg/contentmanagement-fullstack
- Owner: deerborg
- License: mit
- Created: 2024-11-07T04:08:56.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-07T04:30:45.000Z (2 months ago)
- Last Synced: 2024-11-07T05:26:58.517Z (2 months ago)
- Language: Java
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Türkçe
Sınıflar Göster
### ContentService Sınıfı Metodları
## 1. `createNewContent`
Metodları Göster
Açıklamaları Göster
**Açıklama:**
Bu metot, yeni bir içerik oluşturur. İçerik başlığı, açıklaması gibi temel bilgileri alır ve veri tabanına kaydeder.### Parametreler
- **CreateNewContentRequest**: İçeriğin başlığı ve açıklaması bilgilerini içerir.
- **contentTitle**: İçerik başlığı (String).
- **contentDescription**: İçeriğin açıklaması veya uzun metin (String).### Dönüş Değeri
- **ApiResponse**: İçeriğin temel düzeyde oluşturulmuş halini döner.
---
### Örnek Dönüş Verisi
#### `ContentResponse`:
```json
{
"contentTitle": "string",
"contentDescription": "string"
}
```#### `ApiResponse`:
```json
{
"status": true,
"message": "string",
"data": {
"contentTitle": "string",
"contentDescription": "string"
}
}
```----------------
CHOISE UR LANG.
----------------
English
Show Class
### ContentService Class Functions
## 1. `createNewContent`
Show Methods
Show Descriptions
**Description:**
This method creates a new content. It takes basic information such as the content title and description and saves it to the database.### Parameters
- **CreateNewContentRequest**: Contains the content's title and description information.
- **contentTitle**: The title of the content (String).
- **contentDescription**: The description or detailed text of the content (String).### Return Value
- **ApiResponse**: Returns the basic created version of the content.
---
### Örnek Dönüş Verisi
#### `ContentResponse`:
```json
{
"contentTitle": "string",
"contentDescription": "string"
}
```#### `ApiResponse`:
```json
{
"status": true,
"message": "string",
"data": {
"contentTitle": "string",
"contentDescription": "string"
}
}
```