Style CI fix
This commit is contained in:
parent
263d1f83c8
commit
26fe6ff559
1 changed files with 2 additions and 2 deletions
|
@ -124,7 +124,7 @@ class MicropubController extends Controller
|
||||||
//we have a valid token, is `syndicate-to` set?
|
//we have a valid token, is `syndicate-to` set?
|
||||||
if ($request->input('q') === 'syndicate-to') {
|
if ($request->input('q') === 'syndicate-to') {
|
||||||
return response()->json([
|
return response()->json([
|
||||||
'syndicate-to' => config('syndication.targets')
|
'syndicate-to' => config('syndication.targets'),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
//nope, how about a geo URL?
|
//nope, how about a geo URL?
|
||||||
|
@ -148,7 +148,7 @@ class MicropubController extends Controller
|
||||||
//nope, ho about a config query?
|
//nope, ho about a config query?
|
||||||
if ($request->input('q') == 'config') {
|
if ($request->input('q') == 'config') {
|
||||||
return response()->json([
|
return response()->json([
|
||||||
'syndicate-to' => config('syndication.targets')
|
'syndicate-to' => config('syndication.targets'),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue