Skip to content

Commit 328520f

Browse files
committed
deprecated package laravelium/feed
1 parent 53b2764 commit 328520f

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/Controllers/BinshopsBlogRssFeedController.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
* Class BinshopsBlogRssFeedController.php
1313
* All RSS feed viewing methods
1414
* @package BinshopsBlog\Controllers
15+
* @deprecated
16+
* laravelium/feed package is no longer maintained
1517
*/
1618
class BinshopsBlogRssFeedController extends Controller
1719
{

src/routes.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
Route::group(['middleware' => ['web'], 'namespace' => '\BinshopsBlog\Controllers'], function () {
44

5-
65
/** The main public facing blog routes - show all posts, view a category, rss feed, view a single post, also the add comment route */
76
Route::group(['prefix' => config('binshopsblog.blog_prefix', 'blog')], function () {
87

@@ -25,20 +24,15 @@
2524
'BinshopsBlogReaderController@viewSinglePost')
2625
->name('binshopsblog.single');
2726

28-
2927
// throttle to a max of 10 attempts in 3 minutes:
3028
Route::group(['middleware' => 'throttle:10,3'], function () {
3129

3230
Route::post('save_comment/{blogPostSlug}',
3331
'BinshopsBlogCommentWriterController@addNewComment')
3432
->name('binshopsblog.comments.add_new_comment');
35-
36-
3733
});
38-
3934
});
4035

41-
4236
/* Admin backend routes - CRUD for posts, categories, and approving/deleting submitted comments */
4337
Route::group(['prefix' => config('binshopsblog.admin_prefix', 'blog_admin')], function () {
4438

@@ -78,10 +72,8 @@
7872

7973
Route::get("/upload", "BinshopsBlogImageUploadController@create")->name("binshopsblog.admin.images.upload");
8074
Route::post("/upload", "BinshopsBlogImageUploadController@store")->name("binshopsblog.admin.images.store");
81-
8275
});
8376

84-
8577
Route::delete('/delete_post/{blogPostId}',
8678
'BinshopsBlogAdminController@destroy_post')
8779
->name('binshopsblog.admin.destroy_post');
@@ -124,9 +116,7 @@
124116
Route::delete('/delete_category/{categoryId}',
125117
'BinshopsBlogCategoryAdminController@destroy_category')
126118
->name('binshopsblog.admin.categories.destroy_category');
127-
128119
});
129-
130120
});
131121
});
132122

0 commit comments

Comments
 (0)