* feat: support to okapi * fix: fmt checks * chore: rocket-okapi-example: add required schemas * chore: rocket-okapi-example: add dto * chore: rocket-okapi-example: add custom error * chore: rocket-okapi-example: add api controllers * chore: rocket-okapi-example: add notes in Readme * chore: make rocket_okapi optional * refactor: delete rocket example from rocket_example * chore: rocket-okapi-example: add base files for okapi example * chore: rocket-okapi-example: add controllers and dto * chore: rocket-okapi-example: add docs
22 lines
583 B
Rust
22 lines
583 B
Rust
use rocket::serde::{Deserialize, Serialize};
|
|
use rocket_okapi::okapi::schemars::{self, JsonSchema};
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
#[derive(
|
|
Clone, Debug, PartialEq, Eq, DeriveEntityModel, Deserialize, Serialize, FromForm, JsonSchema,
|
|
)]
|
|
#[serde(crate = "rocket::serde")]
|
|
#[sea_orm(table_name = "posts")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub title: String,
|
|
#[sea_orm(column_type = "Text")]
|
|
pub text: String,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|