admin: Fix video route
This commit is contained in:
parent
b92381f007
commit
4a190f51c5
8 changed files with 28 additions and 7 deletions
|
|
@ -22,6 +22,10 @@ func (i GitImporter) toURL(filename string) string {
|
|||
return i.li.toURL(filename)
|
||||
}
|
||||
|
||||
func (i GitImporter) GetLocalPath(filename ...string) string {
|
||||
return i.li.GetLocalPath(filename...)
|
||||
}
|
||||
|
||||
func (i GitImporter) importFile(URI string, next func(string, string) (interface{}, error)) (interface{}, error) {
|
||||
return i.li.importFile(URI, next)
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue