Skip to content

Commit 3d839fe

Browse files
author
zhangjiangbin
committed
1.更新版权信息
2.修正打开阻止机器人够造成订阅失败问题
1 parent d1dbe69 commit 3d839fe

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

resources/views/admin/layouts.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
<!-- END CONTAINER -->
304304
<!-- BEGIN FOOTER -->
305305
<div class="page-footer">
306-
<div class="page-footer-inner"> 2017 &copy; <a href="https://github.com/ssrpanel/ssrpanel" target="_blank">SSRPanel</a> </div>
306+
<div class="page-footer-inner"> 2017 - 2018 &copy; <a href="https://github.com/ssrpanel/ssrpanel" target="_blank">SSRPanel</a> </div>
307307
<div class="scroll-to-top">
308308
<i class="icon-arrow-up"></i>
309309
</div>

resources/views/user/layouts.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
<!-- END CONTAINER -->
176176
<!-- BEGIN FOOTER -->
177177
<div class="page-footer">
178-
<div class="page-footer-inner"> 2017 &copy; <a href="https://github.com/ssrpanel/ssrpanel" target="_blank">SSRPanel</a> </div>
178+
<div class="page-footer-inner"> 2017 - 2018 &copy; <a href="https://github.com/ssrpanel/ssrpanel" target="_blank">SSRPanel</a> </div>
179179
<div class="scroll-to-top">
180180
<i class="icon-arrow-up"></i>
181181
</div>

routes/web.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?php
22

3+
Route::get('subscribe/{code}', 'SubscribeController@index'); // 节点订阅地址
4+
Route::post('locate', 'LocateController@locate'); // 上报文章打开时的定位
5+
36
Route::group(['middleware' => ['forbidden']], function () {
47
Route::any('login', 'LoginController@index'); // 登录
58
Route::get('logout', 'LoginController@logout'); // 退出
@@ -8,9 +11,7 @@
811
Route::any('reset/{token}', 'UserController@reset'); // 重设密码
912
Route::any('activeUser', 'UserController@activeUser'); // 激活账号
1013
Route::get('active/{token}', 'UserController@active'); // 激活账号
11-
Route::get('subscribe/{code}', 'SubscribeController@index'); // 节点订阅地址
1214
Route::get('article', 'ArticleController@index'); // 定位文章详情
13-
Route::post('locate', 'LocateController@locate'); // 上报文章打开时的定位
1415
Route::get('free', 'UserController@free'); // 免费邀请码
1516
});
1617

0 commit comments

Comments
 (0)