We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cecc772 commit 16fdb37Copy full SHA for 16fdb37
src/requestHandler.ts
@@ -1240,6 +1240,13 @@ export default class RequestHandler {
1240
.patch(this.periodicPatch.bind(this))
1241
.post(this.periodicPost.bind(this))
1242
.delete(this.periodicDelete.bind(this));
1243
+ this.api
1244
+ .route("/periodic/:year/:month/:day/:period/")
1245
+ .get(this.periodicGet.bind(this))
1246
+ .put(this.periodicPut.bind(this))
1247
+ .patch(this.periodicPatch.bind(this))
1248
+ .post(this.periodicPost.bind(this))
1249
+ .delete(this.periodicDelete.bind(this));
1250
1251
this.api.route("/commands/").get(this.commandGet.bind(this));
1252
this.api.route("/commands/:commandId/").post(this.commandPost.bind(this));
0 commit comments