Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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"
}
}
```