From df6c00db050e188a6bd5707e72c4f1f331ced923 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 08 Feb 2026 20:46:43 +0000
Subject: [PATCH] =Port over to jakevan 2
---
inc/rest/routes/FeedRoutes.php | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/inc/rest/routes/FeedRoutes.php b/inc/rest/routes/FeedRoutes.php
index af6c2c1..0368b21 100644
--- a/inc/rest/routes/FeedRoutes.php
+++ b/inc/rest/routes/FeedRoutes.php
@@ -95,13 +95,15 @@
'highlight' => 'string',
])
->auth('public')
- ->rateLimit(30, 60);
+ ->rateLimit(30)
+ ->register();
// Feed types endpoint
Route::for('feed/types')
->get([$this, 'getFeedTypes'])
->auth('public')
- ->rateLimit(60, 60);
+ ->rateLimit()
+ ->register();
}
/**
--
Gitblit v1.10.0