Adding time point recording.

This commit is contained in:
stephb9959
2022-03-21 23:02:34 -07:00
parent 1c6dafff5c
commit e20f1a3d34
2 changed files with 2 additions and 2 deletions

View File

@@ -810,7 +810,7 @@ paths:
404:
$ref: '#/components/responses/NotFound'
/board/{id}/timepoint:
/board/{id}/timepoints:
get:
tags:
- Board data

View File

@@ -20,7 +20,7 @@ namespace OpenWifi {
TransactionId,
Internal){}
static const std::list<const char *> PathName() { return std::list<const char *>{"/api/v1/board/{id}/timepoint"}; };
static const std::list<const char *> PathName() { return std::list<const char *>{"/api/v1/board/{id}/timepoints"}; };
private:
TimePointDB & DB_=StorageService()->TimePointsDB();