rework pwa cc
Build and Publish Docker Image / build-and-push-image (push) Successful in 1m48s

This commit is contained in:
Zed
2026-07-11 02:01:08 +02:00
parent 9ae37f98ed
commit ce1db937f2
52 changed files with 5210 additions and 48 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Router } from "express";
import { requireAuth } from "../../middleware/auth.js";
import { asyncHandler } from "../../middleware/errorHandler.js";
import * as controller from "./controller.js";
export const syncRouter = Router();
syncRouter.get("/", requireAuth, asyncHandler(controller.pull));
syncRouter.post("/", requireAuth, asyncHandler(controller.push));