@@ -43,10 +43,10 @@ |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | if ($action == 'read') { |
| 46 | - $result = $notification->markRead($enable); |
|
| 46 | + $result = $notification->markRead($enable); |
|
| 47 | 47 | } |
| 48 | 48 | elseif ($action == 'sticky') { |
| 49 | - $result = $notification->markSticky(false); |
|
| 49 | + $result = $notification->markSticky(false); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | if ($result === false) { |
@@ -3,8 +3,6 @@ |
||
| 3 | 3 | namespace App\Api\Controllers; |
| 4 | 4 | |
| 5 | 5 | use App\Models\Notification; |
| 6 | -use App\Models\NotificationAttrib; |
|
| 7 | -use App\Models\User; |
|
| 8 | 6 | use Dingo\Api\Http; |
| 9 | 7 | use Dingo\Api\Routing\Helpers; |
| 10 | 8 | use Illuminate\Http\Request; |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | $versions['db_schema'] = DB::select('SELECT `version` FROM `dbSchema` LIMIT 1')[0]->version; |
| 17 | 17 | $versions['php'] = phpversion(); |
| 18 | 18 | $versions['db_driver'] = strtoupper(DB::connection()->getDriverName()); |
| 19 | - if ($versions['db_driver'] == 'SQLITE') { |
|
| 19 | + if ($versions['db_driver'] == 'SQLITE') { |
|
| 20 | 20 | $versions['db_version'] = DB::select('SELECT sqlite_version() AS version')[0]->version; |
| 21 | 21 | } |
| 22 | 22 | else { |
@@ -1,19 +1,19 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (C) 2016 Tony Murray <[email protected]> |
|
| 4 | - * This program is free software: you can redistribute it and/or modify |
|
| 5 | - * it under the terms of the GNU General Public License as published by |
|
| 6 | - * the Free Software Foundation, either version 3 of the License, or |
|
| 7 | - * (at your option) any later version. |
|
| 8 | - * |
|
| 9 | - * This program is distributed in the hope that it will be useful, |
|
| 10 | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the |
|
| 12 | - * GNU General Public License for more details. |
|
| 13 | - * |
|
| 14 | - * You should have received a copy of the GNU General Public License |
|
| 15 | - * along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 16 | - */ |
|
| 3 | + * Copyright (C) 2016 Tony Murray <[email protected]> |
|
| 4 | + * This program is free software: you can redistribute it and/or modify |
|
| 5 | + * it under the terms of the GNU General Public License as published by |
|
| 6 | + * the Free Software Foundation, either version 3 of the License, or |
|
| 7 | + * (at your option) any later version. |
|
| 8 | + * |
|
| 9 | + * This program is distributed in the hope that it will be useful, |
|
| 10 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the |
|
| 12 | + * GNU General Public License for more details. |
|
| 13 | + * |
|
| 14 | + * You should have received a copy of the GNU General Public License |
|
| 15 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 16 | + */ |
|
| 17 | 17 | |
| 18 | 18 | namespace App\Http\Controllers; |
| 19 | 19 | |
@@ -17,8 +17,6 @@ |
||
| 17 | 17 | |
| 18 | 18 | namespace App\Http\Controllers; |
| 19 | 19 | |
| 20 | -use App\Http\Requests; |
|
| 21 | -use App\Models\DbConfig; |
|
| 22 | 20 | use Illuminate\Http\Request; |
| 23 | 21 | use Settings; |
| 24 | 22 | |
@@ -15,13 +15,13 @@ |
||
| 15 | 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | 16 | */ |
| 17 | 17 | /** |
| 18 | - * Settings.php |
|
| 19 | - * |
|
| 20 | - * @package LibreNMS |
|
| 21 | - * @author Tony Murray <[email protected]> |
|
| 22 | - * @copyright 2016 Tony Murray |
|
| 23 | - * @license @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later |
|
| 24 | - */ |
|
| 18 | + * Settings.php |
|
| 19 | + * |
|
| 20 | + * @package LibreNMS |
|
| 21 | + * @author Tony Murray <[email protected]> |
|
| 22 | + * @copyright 2016 Tony Murray |
|
| 23 | + * @license @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later |
|
| 24 | + */ |
|
| 25 | 25 | namespace App\Settings; |
| 26 | 26 | |
| 27 | 27 | |
@@ -28,7 +28,6 @@ |
||
| 28 | 28 | use App\Models\DbConfig; |
| 29 | 29 | use Cache; |
| 30 | 30 | use Config; |
| 31 | -use DB; |
|
| 32 | 31 | use Illuminate\Contracts\Config\Repository as ConfigContract; |
| 33 | 32 | |
| 34 | 33 | // adds the possibility to replace the default Config facade |
@@ -15,13 +15,13 @@ |
||
| 15 | 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | 16 | */ |
| 17 | 17 | /** |
| 18 | - * Settings.php |
|
| 19 | - * |
|
| 20 | - * @package LibreNMS |
|
| 21 | - * @author Tony Murray <[email protected]> |
|
| 22 | - * @copyright 2016 Tony Murray |
|
| 23 | - * @license @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later |
|
| 24 | - */ |
|
| 18 | + * Settings.php |
|
| 19 | + * |
|
| 20 | + * @package LibreNMS |
|
| 21 | + * @author Tony Murray <[email protected]> |
|
| 22 | + * @copyright 2016 Tony Murray |
|
| 23 | + * @license @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later |
|
| 24 | + */ |
|
| 25 | 25 | namespace App\Settings; |
| 26 | 26 | |
| 27 | 27 | |