Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: octane dummy app files #474

Merged
Prev Previous commit
Next Next commit
refactor: native class for dummy application adapter too
Techn1x committed Dec 3, 2022
commit de990e6a665deb9e544289478d827c56b7535c5f
2 changes: 1 addition & 1 deletion tests/dummy/app/adapters/application.js
Original file line number Diff line number Diff line change
@@ -3,4 +3,4 @@
import AdapterFetch from 'ember-fetch/mixins/adapter-fetch';
import JSONAPIAdapter from '@ember-data/adapter/json-api';

export default JSONAPIAdapter.extend(AdapterFetch);
export default class extends JSONAPIAdapter.extend(AdapterFetch) {}
Copy link
Contributor Author

@Techn1x Techn1x Dec 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will conflict with the removal of AdapterFetch
#464

But whoever merges last can handle the conflct