TryGhost/Ghost

View on GitHub
ghost/admin/config/deprecation-workflow.js

Summary

Maintainability
A
0 mins
Test Coverage
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
    workflow: [
        // remove once ember-drag-drop removes usage of Component#sendAction
        // https://github.com/mharris717/ember-drag-drop/issues/155
        {handler: 'silence', matchId: 'ember-component.send-action'},

        // remove once liquid-fire and liquid-wormhole remove uses of `this.$()`
        {handler: 'silence', matchId: 'ember-views.curly-components.jquery-element'}
    ]
};