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)
| 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 | """ |
no outgoing calls
no test coverage detected