Files
NodeBB/public/openapi/read/admin/advanced/jobs.yaml
Barış Soner Uşaklı 2187f160a9 add active flag to jobs
dont delete everything on startup
2026-03-10 22:32:36 -04:00

37 lines
1.1 KiB
YAML

get:
tags:
- admin
summary: Get cron job info
responses:
"200":
description: ""
content:
application/json:
schema:
allOf:
- type: object
properties:
jobs:
type: array
items:
type: object
properties:
name:
type: string
cronTime:
type: string
cronTimeHuman:
type: string
nextRun:
type: integer
nextRunISO:
type: integer
duration:
type: integer
durationReadable:
type: string
running:
type: boolean
active:
type: boolean
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps