mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-22 20:51:12 +10:00
22 lines
417 B
Plaintext
22 lines
417 B
Plaintext
model StorePage {
|
|
url String @id
|
|
components StoreComponent[]
|
|
|
|
acls String[] @default([]) // Empty ACL means just "store:read"
|
|
}
|
|
|
|
enum StoreComponentType {
|
|
BigCarousel
|
|
SmallCarousel
|
|
}
|
|
|
|
model StoreComponent {
|
|
id String @id
|
|
|
|
type StoreComponentType
|
|
configuration Json
|
|
|
|
pageUrl String?
|
|
page StorePage? @relation(fields: [pageUrl], references: [url])
|
|
}
|