mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-07 17:02:29 +01:00
17 lines
296 B
Go
17 lines
296 B
Go
package plg_editor_wopi
|
|
|
|
import (
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
)
|
|
|
|
func init() {
|
|
Hooks.Register.Onload(func() {
|
|
server_url()
|
|
origin()
|
|
rewrite_url()
|
|
if plugin_enable() {
|
|
Hooks.Register.XDGOpen(WOPIOverrides)
|
|
}
|
|
})
|
|
Hooks.Register.HttpEndpoint(WOPIRoutes)
|
|
}
|