Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
R3
howto-cards
Commits
ad8ab062
Verified
Commit
ad8ab062
authored
Jun 16, 2020
by
Laurent Heirendt
✈
Browse files
exception for search redirect
parent
2ac24397
Pipeline
#28437
passed with stages
in 1 minute and 14 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
assets/js/router.js
View file @
ad8ab062
...
...
@@ -44,8 +44,9 @@ if (sub.length > 0) {
if
(
status
==
200
)
{
// The sub-card is internal and accessible
RedirectTo
(
internalCardURL
);
}
else
{
// No external, no internal - probably no access
RedirectTo
(
'
/404.html
'
);
if
(
!
sub
.
includes
(
'
search_query
'
))
{
// do not redirect when a search is performed
RedirectTo
(
'
/404.html
'
);
// No external, no internal - probably no access
}
}
})
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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