@teikei/api
Version:
Teikei API server. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.
19 lines (13 loc) • 347 B
JavaScript
import { joiSchemas } from '@teikei/schemas'
import { BaseModel } from './base'
export default class Product extends BaseModel {
static tableName = 'products'
// eslint-disable-next-line class-methods-use-this
type() {
return 'Product'
}
link() {
return `/products/${this.id}`
}
static jsonSchema = joiSchemas.product
}