mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-27 19:14:52 +03:00
66 lines
1.3 KiB
JavaScript
66 lines
1.3 KiB
JavaScript
app TodoApp {
|
|
wasp: {
|
|
version: "^0.11.0"
|
|
},
|
|
|
|
title: "Todo app",
|
|
|
|
auth: {
|
|
userEntity: User,
|
|
methods: {
|
|
usernameAndPassword: {}
|
|
},
|
|
onAuthFailedRedirectTo: "/login"
|
|
},
|
|
|
|
dependencies: [
|
|
("react-clock", "3.0.0")
|
|
]
|
|
}
|
|
|
|
route RootRoute { path: "/", to: MainPage }
|
|
page MainPage {
|
|
authRequired: true,
|
|
component: import Main from "@client/MainPage.jsx"
|
|
}
|
|
|
|
route SignupRoute { path: "/signup", to: SignupPage }
|
|
page SignupPage {
|
|
component: import Signup from "@client/SignupPage.jsx"
|
|
}
|
|
|
|
route LoginRoute { path: "/login", to: LoginPage }
|
|
page LoginPage {
|
|
component: import Login from "@client/LoginPage.jsx"
|
|
}
|
|
|
|
entity User {=psl
|
|
id Int @id @default(autoincrement())
|
|
username String @unique
|
|
password String
|
|
tasks Task[]
|
|
psl=}
|
|
|
|
entity Task {=psl
|
|
id Int @id @default(autoincrement())
|
|
description String
|
|
isDone Boolean @default(false)
|
|
user User? @relation(fields: [userId], references: [id])
|
|
userId Int?
|
|
psl=}
|
|
|
|
query getTasks {
|
|
fn: import { getTasks } from "@server/queries.js",
|
|
entities: [Task]
|
|
}
|
|
|
|
action createTask {
|
|
fn: import { createTask } from "@server/actions.js",
|
|
entities: [Task]
|
|
}
|
|
|
|
action updateTask {
|
|
fn: import { updateTask } from "@server/actions.js",
|
|
entities: [Task]
|
|
}
|