mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-05-06 19:47:37 +02:00
37 lines
1.1 KiB
YAML
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 |