MCPcopy Create free account
hub / github.com/WebODM/WebODM / root_mount_points

Method root_mount_points

app/plugins/plugin_base.py:204–215  ·  view source on GitHub ↗

Should be overriden by plugins that want to add routes to the root view controller. CAUTION: this should be used sparingly, as routes could conflict with other plugins and future versions of WebODM might break the routes. It's recommended to use app_

(self)

Source from the content-addressed store, hash-verified

202 return []
203
204 def root_mount_points(self):
205 """
206 Should be overriden by plugins that want to
207 add routes to the root view controller.
208 CAUTION: this should be used sparingly, as
209 routes could conflict with other plugins and
210 future versions of WebODM might break the routes.
211 It's recommended to use app_mount_points, unless
212 you know what you are doing.
213 :return: [] of MountPoint objects
214 """
215 return []
216
217 def app_mount_points(self):
218 """

Callers 2

requires_restartMethod · 0.95
root_url_patternsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected