This method is called when the addon is included in a build. You would typically use this hook to perform additional imports #### Uses: - including vendor files - setting configuration options *Note:* Any options set in the consuming application will override the addon. @
(/* parent */)
| 726 | ``` |
| 727 | */ |
| 728 | included(/* parent */) { |
| 729 | if (!this._addonsInitialized) { |
| 730 | // someone called `this._super.included` without `apply` (because of older |
| 731 | // core-object issues that prevent a "real" super call from working properly) |
| 732 | return; |
| 733 | } |
| 734 | |
| 735 | this.eachAddonInvoke('included', [this]); |
| 736 | }, |
| 737 | |
| 738 | /** |
| 739 | Imports an asset into this addon. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…