Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
5695178d
Commit
5695178d
authored
Aug 23, 2021
by
Dominik Hebeler
Browse files
disabled count interface until migration is complete
parent
2d1e8e42
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
routes/web.php
View file @
5695178d
...
...
@@ -197,9 +197,9 @@ Route::get('plugin', function (Request $request) {
Route
::
group
([
'middleware'
=>
[
'auth.basic'
],
'prefix'
=>
'admin'
],
function
()
{
Route
::
get
(
'/'
,
'AdminInterface@index'
);
Route
::
match
([
'get'
,
'post'
],
'count'
,
'AdminInterface@count'
);
#
Route::match(['get', 'post'], 'count', 'AdminInterface@count');
Route
::
get
(
'timings'
,
'MetaGerSearch@searchTimings'
);
Route
::
get
(
'count/graphtoday.svg'
,
'AdminInterface@countGraphToday'
);
#
Route::get('count/graphtoday.svg', 'AdminInterface@countGraphToday');
Route
::
get
(
'engine/stats.json'
,
'AdminInterface@engineStats'
);
Route
::
get
(
'check'
,
'AdminInterface@check'
);
Route
::
get
(
'engines'
,
'AdminInterface@engines'
);
...
...
Write
Preview
Supports
Markdown
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