* Return the app's absolute pathname * based on the parent(s) that have * mounted it. * * For example if the application was * mounted as `"/admin"`, which itself * was mounted as `"/blog"` then the * return value would be `"/blog/admin"`. *
()
| 254 | * |
| 255 | */ |
| 256 | path(): string { |
| 257 | return this.parent ? this.parent.path() + this.mountpath : '' |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Push middleware to the stack |