Move RSS route out of authentification

This commit is contained in:
DariusIII
2019-02-24 15:29:55 +01:00
parent 88c996c317
commit 26004fff13
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ class RssController extends BasePageController
$res = User::getByRssToken($request->input('r'));
if (! $res) {
Utility::showApiError(100);
return response()->json(['error' => 'Invalid RSS token'], 403);
}
$uid = $res['id'];