Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
ab79348a
Commit
ab79348a
authored
Jan 09, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(plugins): minor fix for external plugins with staticRoot
parent
d83e2457
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
pkg/plugins/frontend_plugin.go
+3
-2
No files found.
pkg/plugins/frontend_plugin.go
View file @
ab79348a
...
...
@@ -3,6 +3,7 @@ package plugins
import
(
"net/url"
"path"
"path/filepath"
)
type
FrontendPluginBase
struct
{
...
...
@@ -14,7 +15,7 @@ type FrontendPluginBase struct {
func
(
fp
*
FrontendPluginBase
)
initFrontendPlugin
()
{
if
fp
.
StaticRoot
!=
""
{
StaticRoutes
=
append
(
StaticRoutes
,
&
PluginStaticRoute
{
Directory
:
f
p
.
StaticRoot
,
Directory
:
f
ilepath
.
Join
(
fp
.
PluginDir
,
fp
.
StaticRoot
)
,
PluginId
:
fp
.
Id
,
})
}
...
...
@@ -31,7 +32,7 @@ func (fp *FrontendPluginBase) handleModuleDefaults() {
}
if
fp
.
StaticRoot
!=
""
{
fp
.
Module
=
path
.
Join
(
"plugins"
,
fp
.
Type
,
fp
.
Id
,
"module"
)
fp
.
Module
=
path
.
Join
(
"plugins"
,
fp
.
Id
,
"module"
)
return
}
...
...
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