Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
media_tableau
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
media_tableau
Merge requests
!7
Issue
#3462050
: Add support for self hosted tableau sub dirs.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3462050
: Add support for self hosted tableau sub dirs.
issue/media_tableau-3462050:3462050-allow-host-sub
into
2.x
Overview
2
Commits
4
Pipelines
8
Changes
2
All threads resolved!
Hide all comments
Merged
Betty Tran
requested to merge
issue/media_tableau-3462050:3462050-allow-host-sub
into
2.x
11 months ago
Overview
2
Commits
4
Pipelines
8
Changes
2
All threads resolved!
Hide all comments
Expand
Closes
#3462050
1
0
Merge request reports
Compare
2.x
version 6
e672fa35
10 months ago
version 5
c07b9e5a
11 months ago
version 4
47eb9962
11 months ago
version 3
b66e1f2d
11 months ago
version 2
f19ebbc2
11 months ago
version 1
dda16436
11 months ago
2.x (base)
and
latest version
latest version
c2fdf531
4 commits,
10 months ago
version 6
e672fa35
4 commits,
10 months ago
version 5
c07b9e5a
3 commits,
11 months ago
version 4
47eb9962
4 commits,
11 months ago
version 3
b66e1f2d
3 commits,
11 months ago
version 2
f19ebbc2
2 commits,
11 months ago
version 1
dda16436
1 commit,
11 months ago
2 files
+
17
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/Plugin/Field/FieldFormatter/MediaTableauEmbedFormatter.php
+
1
−
1
Options
@@ -32,7 +32,7 @@ class MediaTableauEmbedFormatter extends MediaRemoteFormatterBase {
$hosts
[]
=
preg_quote
(
$host
,
'/'
);
}
return
'/^('
.
implode
(
'|'
,
$hosts
)
.
')\/(app\/profile\/.*\/viz\/.*|views\/.*)/'
;
return
'/^('
.
implode
(
'|'
,
$hosts
)
.
')\/(
.*\/)?(
app\/profile\/.*\/viz\/.*|views\/.*)/'
;
}
/**
Loading