Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
b3576ffd
Unverified
Commit
b3576ffd
authored
Sep 19, 2017
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CS: PSR1/2
parent
188083be
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
RoutingServiceProvider.php
Modules/Core/Providers/RoutingServiceProvider.php
+1
-1
settings.php
Modules/Dashboard/Config/settings.php
+2
-2
2017_09_18_192639_make_title_field_nullable_menu_table.php
...017_09_18_192639_make_title_field_nullable_menu_table.php
+2
-2
2017_09_17_164631_make_setting_value_nullable.php
...rations/2017_09_17_164631_make_setting_value_nullable.php
+2
-2
No files found.
Modules/Core/Providers/RoutingServiceProvider.php
View file @
b3576ffd
...
@@ -106,7 +106,7 @@ abstract class RoutingServiceProvider extends ServiceProvider
...
@@ -106,7 +106,7 @@ abstract class RoutingServiceProvider extends ServiceProvider
if
(
$api
&&
file_exists
(
$api
))
{
if
(
$api
&&
file_exists
(
$api
))
{
$router
->
group
([
$router
->
group
([
'namespace'
=>
'Api'
,
'namespace'
=>
'Api'
,
'prefix'
=>
LaravelLocalization
::
setLocale
()
.
'/api'
,
'prefix'
=>
LaravelLocalization
::
setLocale
()
.
'/api'
,
'middleware'
=>
config
(
'asgard.core.core.middleware.api'
,
[]),
'middleware'
=>
config
(
'asgard.core.core.middleware.api'
,
[]),
],
function
(
Router
$router
)
use
(
$api
)
{
],
function
(
Router
$router
)
use
(
$api
)
{
require
$api
;
require
$api
;
...
...
Modules/Dashboard/Config/settings.php
View file @
b3576ffd
...
@@ -5,13 +5,13 @@ return [
...
@@ -5,13 +5,13 @@ return [
'description'
=>
'dashboard::dashboard.welcome-title'
,
'description'
=>
'dashboard::dashboard.welcome-title'
,
'view'
=>
'text'
,
'view'
=>
'text'
,
'translatable'
=>
true
,
'translatable'
=>
true
,
'default'
=>
'Welcome on your backend!'
'default'
=>
'Welcome on your backend!'
,
],
],
'welcome-description'
=>
[
'welcome-description'
=>
[
'description'
=>
'dashboard::dashboard.welcome-description'
,
'description'
=>
'dashboard::dashboard.welcome-description'
,
'view'
=>
'textarea'
,
'view'
=>
'textarea'
,
'translatable'
=>
true
,
'translatable'
=>
true
,
'default'
=>
'Did you know you can access the documentation by pressing F1?'
'default'
=>
'Did you know you can access the documentation by pressing F1?'
,
],
],
'welcome-enabled'
=>
[
'welcome-enabled'
=>
[
'description'
=>
'dashboard::dashboard.welcome-enabled'
,
'description'
=>
'dashboard::dashboard.welcome-enabled'
,
...
...
Modules/Menu/Database/Migrations/2017_09_18_192639_make_title_field_nullable_menu_table.php
View file @
b3576ffd
<?php
<?php
use
Illuminate\Support\Facades\Schema
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
MakeTitleFieldNullableMenuTable
extends
Migration
class
MakeTitleFieldNullableMenuTable
extends
Migration
{
{
...
...
Modules/Setting/Database/Migrations/2017_09_17_164631_make_setting_value_nullable.php
View file @
b3576ffd
<?php
<?php
use
Illuminate\Support\Facades\Schema
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
MakeSettingValueNullable
extends
Migration
class
MakeSettingValueNullable
extends
Migration
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment