Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
Yeray Santana Hualde
syncEnrollments
Commits
d72e3f3a
Commit
d72e3f3a
authored
Jul 09, 2016
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
fix conflicts
parents
c0898cc7
02274da8
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
7 deletions
+12
-7
broadcasting.php
config/broadcasting.php
+2
-0
cache.php
config/cache.php
+2
-0
queue.php
config/queue.php
+3
-3
session.php
config/session.php
+1
-1
2014_10_12_100000_create_password_resets_table.php
...ations/2014_10_12_100000_create_password_resets_table.php
+1
-1
validation.php
resources/lang/en/validation.php
+1
-0
503.blade.php
resources/views/errors/503.blade.php
+1
-1
welcome.blade.php
resources/views/welcome.blade.php
+1
-1
No files found.
config/broadcasting.php
View file @
d72e3f3a
...
...
@@ -11,6 +11,8 @@ return [
| framework when an event needs to be broadcast. You may set this to
| any of the connections defined in the "connections" array below.
|
| Supported: "pusher", "redis", "log"
|
*/
'default'
=>
env
(
'BROADCAST_DRIVER'
,
'pusher'
),
...
...
config/cache.php
View file @
d72e3f3a
...
...
@@ -11,6 +11,8 @@ return [
| using this caching library. This connection is used when another is
| not explicitly specified when executing a given caching function.
|
| Supported: "apc", "array", "database", "file", "memcached", "redis"
|
*/
'default'
=>
env
(
'CACHE_DRIVER'
,
'file'
),
...
...
config/queue.php
View file @
d72e3f3a
...
...
@@ -38,14 +38,14 @@ return [
'driver'
=>
'database'
,
'table'
=>
'jobs'
,
'queue'
=>
'default'
,
'expire'
=>
6
0
,
'expire'
=>
9
0
,
],
'beanstalkd'
=>
[
'driver'
=>
'beanstalkd'
,
'host'
=>
'localhost'
,
'queue'
=>
'default'
,
'ttr'
=>
6
0
,
'ttr'
=>
9
0
,
],
'sqs'
=>
[
...
...
@@ -61,7 +61,7 @@ return [
'driver'
=>
'redis'
,
'connection'
=>
'default'
,
'queue'
=>
'default'
,
'expire'
=>
6
0
,
'expire'
=>
9
0
,
],
],
...
...
config/session.php
View file @
d72e3f3a
...
...
@@ -148,7 +148,7 @@ return [
|
*/
'domain'
=>
null
,
'domain'
=>
env
(
'SESSION_DOMAIN'
,
null
)
,
/*
|--------------------------------------------------------------------------
...
...
database/migrations/2014_10_12_100000_create_password_resets_table.php
View file @
d72e3f3a
...
...
@@ -15,7 +15,7 @@ class CreatePasswordResetsTable extends Migration
Schema
::
create
(
'password_resets'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'email'
)
->
index
();
$table
->
string
(
'token'
)
->
index
();
$table
->
timestamp
(
'created_at'
);
$table
->
timestamp
(
'created_at'
)
->
nullable
()
;
});
}
...
...
resources/lang/en/validation.php
View file @
d72e3f3a
...
...
@@ -38,6 +38,7 @@ return [
'distinct'
=>
'The :attribute field has a duplicate value.'
,
'email'
=>
'The :attribute must be a valid email address.'
,
'exists'
=>
'The selected :attribute is invalid.'
,
'file'
=>
'The :attribute must be a file.'
,
'filled'
=>
'The :attribute field is required.'
,
'image'
=>
'The :attribute must be an image.'
,
'in'
=>
'The selected :attribute is invalid.'
,
...
...
resources/views/errors/503.blade.php
View file @
d72e3f3a
...
...
@@ -17,7 +17,7 @@
color
:
#B0BEC5
;
display
:
table
;
font-weight
:
100
;
font-family
:
'Lato'
;
font-family
:
'Lato'
,
sans-serif
;
}
.container
{
...
...
resources/views/welcome.blade.php
View file @
d72e3f3a
...
...
@@ -16,7 +16,7 @@
width
:
100%
;
display
:
table
;
font-weight
:
100
;
font-family
:
'Lato'
;
font-family
:
'Lato'
,
sans-serif
;
}
.container
{
...
...
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