feat(editor): ✨ Zoom in/out
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
-- CreateEnum
|
||||
CREATE TYPE "GraphNavigation" AS ENUM ('MOUSE', 'TRACKPAD');
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "User" ADD COLUMN "graphNavigation" "GraphNavigation";
|
@ -58,6 +58,12 @@ model User {
|
||||
CollaboratorsOnTypebots CollaboratorsOnTypebots[]
|
||||
company String?
|
||||
onboardingCategories String[]
|
||||
graphNavigation GraphNavigation?
|
||||
}
|
||||
|
||||
enum GraphNavigation {
|
||||
MOUSE
|
||||
TRACKPAD
|
||||
}
|
||||
|
||||
model CustomDomain {
|
||||
|
Reference in New Issue
Block a user